Uses of Interface
org.osgi.service.useradmin.Role
-
Packages that use Role Package Description org.osgi.service.useradmin 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
Group
A named grouping of roles (Role
objects).interface
User
AUser
role managed by a User Admin service.Fields in org.osgi.service.useradmin declared as Role Modifier and Type Field Description private Role
UserAdminEvent. role
Methods in org.osgi.service.useradmin that return Role Modifier and Type Method Description Role
UserAdmin. createRole(java.lang.String name, int type)
Creates aRole
object with the given name and of the given type.Role[]
Group. getMembers()
Gets the basic members of thisGroup
object.Role[]
Group. getRequiredMembers()
Gets the required members of thisGroup
object.Role
UserAdmin. getRole(java.lang.String name)
Gets theRole
object with the givenname
from this User Admin service.Role
UserAdminEvent. getRole()
Gets theRole
object this event was generated for.Role[]
UserAdmin. getRoles(java.lang.String filter)
Gets theRole
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 specifiedRole
object as a basic member to thisGroup
object.boolean
Group. addRequiredMember(Role role)
Adds the specifiedRole
object as a required member to thisGroup
object.boolean
Group. removeMember(Role role)
Removes the specifiedRole
object from thisGroup
object.Constructors in org.osgi.service.useradmin with parameters of type Role Constructor Description UserAdminEvent(org.osgi.framework.ServiceReference<UserAdmin> ref, int type, Role role)
Constructs aUserAdminEvent
object from the givenServiceReference
object, event type, andRole
object.
-