Uses of Interface
org.jboss.security.identity.Role
-
Packages that use Role Package Description org.jboss.security.acl org.jboss.security.authorization.modules org.jboss.security.identity org.jboss.security.identity.extensions org.jboss.security.identity.plugins -
-
Uses of Role in org.jboss.security.acl
Methods in org.jboss.security.acl with parameters of type Role Modifier and Type Method Description protected void
RoleBasedACLProviderImpl. getAllRoles(Role role, List<Role> roles)
This method traverses the role tree that has the specified root role and puts all simple (i.e.Method parameters in org.jboss.security.acl with type arguments of type Role Modifier and Type Method Description protected void
RoleBasedACLProviderImpl. getAllRoles(Role role, List<Role> roles)
This method traverses the role tree that has the specified root role and puts all simple (i.e. -
Uses of Role in org.jboss.security.authorization.modules
Methods in org.jboss.security.authorization.modules with parameters of type Role Modifier and Type Method Description protected Principal[]
AbstractJACCModuleDelegate. getPrincipals(Subject subject, Role role)
-
Uses of Role in org.jboss.security.identity
Subinterfaces of Role in org.jboss.security.identity Modifier and Type Interface Description interface
RoleGroup
Represents a group of rolesMethods in org.jboss.security.identity that return Role Modifier and Type Method Description static Role
RoleFactory. createRole(String name)
Role
Role. getParent()
Gets a reference to the parent role, if one is available.Role
Identity. getRole()
Get the Role (Role or RoleGroup)Methods in org.jboss.security.identity that return types with arguments of type Role Modifier and Type Method Description Collection<Role>
RoleGroup. getRoles()
Get the roles contained in theRoleGroup
.Methods in org.jboss.security.identity with parameters of type Role Modifier and Type Method Description void
RoleGroup. addRole(Role aRole)
Add a roleboolean
Role. containsAll(Role anotherRole)
Indicate whether the argument role is equal or contained depending on the role-typeboolean
RoleGroup. containsRole(Role aRole)
Validates whether a simple role is availablestatic Identity
IdentityFactory. getIdentity(Principal principal, X509Certificate[] certs, Role roles)
void
RoleGroup. removeRole(Role aRole)
Remove a roleMethod parameters in org.jboss.security.identity with type arguments of type Role Modifier and Type Method Description void
RoleGroup. addAll(Collection<Role> roles)
Adds all specified roles to the role group. -
Uses of Role in org.jboss.security.identity.extensions
Methods in org.jboss.security.identity.extensions with parameters of type Role Modifier and Type Method Description CertificateIdentity
CertificateIdentityFactory. createIdentity(Principal principal, X509Certificate[] certs, Role roles)
static CredentialIdentity<Object>
CredentialIdentityFactory. createIdentity(Principal principal, Object cred, Role roles)
-
Uses of Role in org.jboss.security.identity.plugins
Classes in org.jboss.security.identity.plugins that implement Role Modifier and Type Class Description class
SimpleRole
Simple Roleclass
SimpleRoleGroup
Simple Role GroupFields in org.jboss.security.identity.plugins declared as Role Modifier and Type Field Description static Role
SimpleRole. ANYBODY_ROLE
Methods in org.jboss.security.identity.plugins that return Role Modifier and Type Method Description Role
SimpleRole. getParent()
Role
SimpleIdentity. getRole()
Methods in org.jboss.security.identity.plugins that return types with arguments of type Role Modifier and Type Method Description Collection<Role>
SimpleRoleGroup. getRoles()
Methods in org.jboss.security.identity.plugins with parameters of type Role Modifier and Type Method Description void
SimpleRoleGroup. addRole(Role role)
boolean
SimpleRole. containsAll(Role anotherRole)
boolean
SimpleRoleGroup. containsAll(Role anotherRole)
boolean
SimpleRoleGroup. containsRole(Role role)
static Identity
IdentityFactory. createIdentityWithRole(String identityClass, String name, Role role)
static Identity
IdentityFactory. createIdentityWithRole(String name, Role role)
void
SimpleRoleGroup. removeRole(Role role)
Method parameters in org.jboss.security.identity.plugins with type arguments of type Role Modifier and Type Method Description void
SimpleRoleGroup. addAll(Collection<Role> roles)
Constructors in org.jboss.security.identity.plugins with parameters of type Role Constructor Description SimpleIdentity(String name, Role role)
SimpleRole(String roleName, Role parent)
Constructor parameters in org.jboss.security.identity.plugins with type arguments of type Role Constructor Description SimpleRoleGroup(String roleName, Collection<Role> roles)
-