Class CompositeCredentialsSupport
java.lang.Object
org.apache.jackrabbit.oak.spi.security.authentication.credentials.CompositeCredentialsSupport
- All Implemented Interfaces:
CredentialsSupport
Composite implementation of the
CredentialsSupport
interface that handles multiple providers.-
Method Summary
Modifier and TypeMethodDescriptiongetAttributes
(@NotNull Credentials credentials) Obtains the attributes as present with the specifiedCredentials
.Returns allcredentials
classes supported by this implementation.@Nullable String
getUserId
(@NotNull Credentials credentials) Retrieves the user identifier from the specifiedCredentials
.static CredentialsSupport
newInstance
(@NotNull Supplier<Collection<CredentialsSupport>> credentialSupplier) boolean
setAttributes
(@NotNull Credentials credentials, @NotNull Map<String, ?> attributes) Writes the attributes to the specifiedCredentials
.
-
Method Details
-
newInstance
public static CredentialsSupport newInstance(@NotNull @NotNull Supplier<Collection<CredentialsSupport>> credentialSupplier) -
getCredentialClasses
Description copied from interface:CredentialsSupport
Returns allcredentials
classes supported by this implementation.- Specified by:
getCredentialClasses
in interfaceCredentialsSupport
- Returns:
- the supported
credentials
classes.
-
getUserId
Description copied from interface:CredentialsSupport
Retrieves 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:
getUserId
in interfaceCredentialsSupport
- Parameters:
credentials
- The credentials as passed to the repository login.- Returns:
- The user id present in the given
Credentials
ornull
.
-
getAttributes
Description copied from interface:CredentialsSupport
Obtains 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:
getAttributes
in 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:CredentialsSupport
Writes 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:
setAttributes
in 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;false
otherwise.
-