Uses of Interface
org.wildfly.security.authz.Attributes
-
Packages that use Attributes Package Description org.wildfly.security.auth.client Elytron Client enable remote clients to authenticate using Elytron.org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.authz Elytron's Authorization API -
-
Uses of Attributes in org.wildfly.security.auth.client
Methods in org.wildfly.security.auth.client that return Attributes Modifier and Type Method Description Attributes
PeerIdentity. getPeerAttributes()
Get the attribute set for the peer identity. -
Uses of Attributes in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server that return Attributes Modifier and Type Method Description default Attributes
RealmIdentity. getAttributes()
Get the attributes for the realm identity.Attributes
SecurityIdentity. getAttributes()
Get the attributes associated with this identity.Methods in org.wildfly.security.auth.server with parameters of type Attributes Modifier and Type Method Description void
ServerAuthenticationContext. addRuntimeAttributes(Attributes runtimeAttributes)
Add runtime attributes to the identity being authenticated.void
ModifiableRealmIdentity. setAttributes(Attributes attributes)
Modify the attributes collection of this identity.SecurityIdentity
SecurityIdentity. withRuntimeAttributes(Attributes runtimeAttributes)
Create a new security identity which is the same as this one, but which includes the given runtime attributes. -
Uses of Attributes in org.wildfly.security.authz
Classes in org.wildfly.security.authz that implement Attributes Modifier and Type Class Description class
AggregateAttributes
An implementation ofAttributes
aggregating multiple instances.class
MapAttributes
A map-backed attributes collection.Fields in org.wildfly.security.authz declared as Attributes Modifier and Type Field Description static Attributes
Attributes. EMPTY
Empty, read-only attribute collection.Methods in org.wildfly.security.authz that return Attributes Modifier and Type Method Description static Attributes
AggregateAttributes. aggregateOf(Attributes... aggrgatedAttributes)
default Attributes
Attributes. asReadOnly()
Returns a read-only instance of this instance.default Attributes
AuthorizationIdentity. getAttributes()
Get the attributes which pertain to this identity.default Attributes
PermissionMappable. getAttributes()
Get the attributes of this entity.default Attributes
AuthorizationIdentity. getRuntimeAttributes()
Get the runtime attributes which pertain to this identity.Methods in org.wildfly.security.authz with parameters of type Attributes Modifier and Type Method Description static Attributes
AggregateAttributes. aggregateOf(Attributes... aggrgatedAttributes)
static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Attributes attributes)
Create a basic authorization identity implementation.static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(AuthorizationIdentity authorizationIdentity, Attributes runtimeAttributes)
Create a basic authorization identity implementation using the given authorization identity and runtime attributes.Method parameters in org.wildfly.security.authz with type arguments of type Attributes Modifier and Type Method Description static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Supplier<Attributes> attributes, String string)
Create a basic authorization identity implementation.static AuthorizationIdentity
AuthorizationIdentity. basicIdentity(Supplier<Attributes> attributes, Supplier<Attributes> runtimeAttributes, String string)
Create a basic authorization identity implementation using the given attributes and runtime attributes.Constructors in org.wildfly.security.authz with parameters of type Attributes Constructor Description MapAttributes(Attributes original)
Construct a new instance copying mappings from an original attributes collection.SimpleAttributesEntry(Attributes attributes, String key)
Construct a new instance.
-