Uses of Class
org.wildfly.security.auth.server.IdentityCredentials
-
Packages that use IdentityCredentials Package Description org.wildfly.naming.client.util org.wildfly.security.auth.server Server side of authentication provided by Elytron.org.wildfly.security.authz Elytron's Authorization API -
-
Uses of IdentityCredentials in org.wildfly.naming.client.util
Methods in org.wildfly.naming.client.util that return IdentityCredentials Modifier and Type Method Description static IdentityCredentialsEnvironmentUtils. getSecurityCredentials(Map<String,?> env)Get the security credential, if any.static IdentityCredentialsEnvironmentUtils. getSecurityCredentials(Map<String,?> env, String propertyName)Get the security credential, if any. -
Uses of IdentityCredentials in org.wildfly.security.auth.server
Fields in org.wildfly.security.auth.server declared as IdentityCredentials Modifier and Type Field Description static IdentityCredentialsIdentityCredentials. NONEThe empty credentials object.Methods in org.wildfly.security.auth.server that return IdentityCredentials Modifier and Type Method Description IdentityCredentialsSecurityIdentity. getPrivateCredentials()Get the private credentials of this identity.IdentityCredentialsSecurityIdentity. getPublicCredentials()Get the public credentials of this identity.abstract IdentityCredentialsIdentityCredentials. with(IdentityCredentials other)Return a copy of this credential set with the given credential set added to it.abstract IdentityCredentialsIdentityCredentials. withCredential(Credential credential)Return a copy of this credential set, but with the given credential added to it.IdentityCredentialsIdentityCredentials. without(Class<? extends Credential> credentialType)Return a copy of this credential set without any credentials of the given type.IdentityCredentialsIdentityCredentials. without(Class<? extends Credential> credentialType, String algorithmName)Return a copy of this credential set without any credentials of the given type and algorithm name.IdentityCredentialsIdentityCredentials. without(Class<? extends Credential> credentialType, String algorithmName, AlgorithmParameterSpec parameterSpec)Return a copy of this credential set without any credentials of the given type, algorithm name and parameter spec.<C extends Credential>
IdentityCredentialsIdentityCredentials. without(Class<C> credentialType, Predicate<? super C> predicate)Return a copy of this credential set without any credentials of the given type that match the predicate.abstract IdentityCredentialsIdentityCredentials. without(Predicate<? super Credential> predicate)Return a copy of this credential set without any credentials that match the predicate.IdentityCredentialsIdentityCredentials. withoutMatching(Credential credential)Return a copy of this credential set without any credentials with a type, algorithm name, and parameters matching that of the given credential.Methods in org.wildfly.security.auth.server with parameters of type IdentityCredentials Modifier and Type Method Description abstract IdentityCredentialsIdentityCredentials. with(IdentityCredentials other)Return a copy of this credential set with the given credential set added to it.SecurityIdentitySecurityIdentity. withPrivateCredentials(IdentityCredentials credentials)Create a new security identity which is the same as this one, but which includes the given credentials as private credentials.SecurityIdentitySecurityIdentity. withPublicCredentials(IdentityCredentials credentials)Create a new security identity which is the same as this one, but which includes the given credentials as public credentials. -
Uses of IdentityCredentials in org.wildfly.security.authz
Methods in org.wildfly.security.authz that return IdentityCredentials Modifier and Type Method Description default IdentityCredentialsPermissionMappable. getPublicCredentials()Get the public credentials of this entity.
-