Uses of Class
com.sas.drugdev.remote.admin.InsufficientPrivilegesException

Packages that use InsufficientPrivilegesException
com.sas.drugdev.remote.admin Provides classes and interfaces for accessing user and group information. 
 

Uses of InsufficientPrivilegesException in com.sas.drugdev.remote.admin
 

Methods in com.sas.drugdev.remote.admin that throw InsufficientPrivilegesException
 RemoteGroup GroupService.create(GroupBean groupBean)
          Creates a new group on the server as described by the GroupBean
 RemoteUser UserService.create(UserBean userBean)
          Create the user described by the given UserBean.
 void GroupService.delete(Group group)
          Deletes the specified group from the server as determined by the Group
 boolean GroupService.exists(GroupBean groupBean)
          Tests whether the specified group exists on the server
 boolean UserService.exists(java.lang.String userId)
          Tests if the user with the specified userId exists
 RemoteGroup GroupService.get(GroupBean groupBean)
          Retrieves a group from the server as described by the GroupBean.
 RemoteUser UserService.get(java.lang.String userId)
          Get the user with the specified userId.
 java.util.List UserService.getAll()
          Gets a list of all users defined in SDD including active, inactive, and retired users.
 java.util.List GroupService.getAll()
          Returns all the Group objects currently available on the server
 java.util.List GroupService.getUserGroups(User user)
          Gets all the groups that a given user is in
 java.util.List UserService.getUsersWithPolicy(Policy policy)
          Gets a list of all users with the given policy
 boolean GroupService.isUserInGroup(User user, Group group)
          Tests whether the specified User is in the given Group
 RemoteGroup GroupService.update(GroupBean groupBean)
          Updates the group on the server with the parameters of the provided GroupBean.
 RemoteUser UserService.update(UserBean userBean)
          Apply the changes that have been made on the given User on the server side.