Class SimpleCredentialsSupport
java.lang.Object
org.apache.jackrabbit.oak.spi.security.authentication.credentials.SimpleCredentialsSupport
- All Implemented Interfaces:
CredentialsSupport
Implementation of the
CredentialsSupport
interface that handles SimpleCredentials.-
Method Summary
Modifier and TypeMethodDescriptiongetAttributes(@NotNull Credentials credentials) Obtains the attributes as present with the specifiedCredentials.Returns allcredentialsclasses supported by this implementation.static CredentialsSupport@Nullable StringgetUserId(@NotNull Credentials credentials) Retrieves the user identifier from the specifiedCredentials.booleansetAttributes(@NotNull Credentials credentials, @NotNull Map<String, ?> attributes) Writes the attributes to the specifiedCredentials.
-
Method Details
-
getInstance
-
getCredentialClasses
Description copied from interface:CredentialsSupportReturns allcredentialsclasses supported by this implementation.- Specified by:
getCredentialClassesin interfaceCredentialsSupport- Returns:
- the supported
credentialsclasses.
-
getUserId
Description copied from interface:CredentialsSupportRetrieves the user identifier from the specifiedCredentials. If the specified credentials are not supported or don't contain any user id information this method will returnnull.- Specified by:
getUserIdin interfaceCredentialsSupport- Parameters:
credentials- The credentials as passed to the repository login.- Returns:
- The user id present in the given
Credentialsornull.
-
getAttributes
Description copied from interface:CredentialsSupportObtains the attributes as present with the specifiedCredentials. If the specified credentials are not supported or don't contain any attributes this method will return an emptyMap.- Specified by:
getAttributesin interfaceCredentialsSupport- Parameters:
credentials- The credentials as passed to the repository login.- Returns:
- The credential attributes or an empty
Map.
-
setAttributes
public boolean setAttributes(@NotNull @NotNull Credentials credentials, @NotNull @NotNull Map<String, ?> attributes) Description copied from interface:CredentialsSupportWrites the attributes to the specifiedCredentials. If the specified credentials are not supported or doesn't allow to write attributes this method will returnfalse.- Specified by:
setAttributesin interfaceCredentialsSupport- Parameters:
credentials- The credentials as passed to the repository login.attributes- The attributes to be written to the given credentials.- Returns:
true, if the attributes were set;falseotherwise.
-