Uses of Class
com.ibm.pim.organization.Permission

Packages that use Permission
com.ibm.pim.organization   
 

Uses of Permission in com.ibm.pim.organization
 

Methods in com.ibm.pim.organization that return Permission
static Permission Permission.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Permission[] Permission.values()
          Returns an array containing the constants of this enum type, in the order they're declared.
 

Methods in com.ibm.pim.organization that return types with arguments of type Permission
 java.util.Set<Permission> Role.getPermissionList(AccessControlGroup accessControlGroup)
          Fetches the Permissions granted to this role as part of the given access control group.
 java.util.Set<Permission> AccessControlGroup.getPermissionList(Role role)
          Identifies the permissions set on for this Access Control Group
 

Method parameters in com.ibm.pim.organization with type arguments of type Permission
 AccessControlGroup OrganizationManager.createAccessControlGroup(java.lang.String acgName, java.lang.String description, Role role, java.util.EnumSet<Permission> permissions)
          Creates an access control group object with the specified acg name and acg description.
 void Role.grantPermissions(AccessControlGroup accessControlGroup, java.util.Set<Permission> permissions)
          Grants the given set of permissions to this role as part of the given access control group.
 void AccessControlGroup.grantPermissions(Role role, java.util.Set<Permission> permissions)
          Grants the given set of permissions to this role.
 void Role.revokePermissions(AccessControlGroup accessControlGroup, java.util.Set<Permission> permissions)
          Revokes the given set of permissions to this role as part of the given access control group.
 void AccessControlGroup.revokePermissions(Role role, java.util.Set<Permission> permissions)
          Revokes the given set of permissions to this role.