Uses of Interface
org.osgi.service.useradmin.Role

Packages that use Role
Package
Description
User Admin Package Version 1.1.
  • Uses of Role in org.osgi.service.useradmin

    Subinterfaces of Role in org.osgi.service.useradmin
    Modifier and Type
    Interface
    Description
    interface 
    A named grouping of roles (Role objects).
    interface 
    A User role managed by a User Admin service.
    Methods in org.osgi.service.useradmin that return Role
    Modifier and Type
    Method
    Description
    UserAdmin.createRole(String name, int type)
    Creates a Role object with the given name and of the given type.
    Group.getMembers()
    Gets the basic members of this Group object.
    Gets the required members of this Group object.
    UserAdmin.getRole(String name)
    Gets the Role object with the given name from this User Admin service.
    UserAdminEvent.getRole()
    Gets the Role object this event was generated for.
    UserAdmin.getRoles(String filter)
    Gets the Role objects managed by this User Admin service that have properties matching the specified LDAP filter criteria.
    Methods in org.osgi.service.useradmin with parameters of type Role
    Modifier and Type
    Method
    Description
    boolean
    Group.addMember(Role role)
    Adds the specified Role object as a basic member to this Group object.
    boolean
    Group.addRequiredMember(Role role)
    Adds the specified Role object as a required member to this Group object.
    boolean
    Group.removeMember(Role role)
    Removes the specified Role object from this Group object.
    Constructors in org.osgi.service.useradmin with parameters of type Role
    Modifier
    Constructor
    Description
     
    UserAdminEvent(org.osgi.framework.ServiceReference<UserAdmin> ref, int type, Role role)
    Constructs a UserAdminEvent object from the given ServiceReference object, event type, and Role object.