Interface PrincipalConfiguration
-
- All Superinterfaces:
SecurityConfiguration
- All Known Implementing Classes:
CompositePrincipalConfiguration
public interface PrincipalConfiguration extends SecurityConfiguration
Configuration interface for principal management.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.apache.jackrabbit.oak.spi.security.SecurityConfiguration
SecurityConfiguration.Default
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description @NotNull PrincipalManager
getPrincipalManager(Root root, NamePathMapper namePathMapper)
Returns an instance ofPrincipalManager
that can be used to query and retrieve principals such as needed for JCR access control management.@NotNull PrincipalProvider
getPrincipalProvider(Root root, NamePathMapper namePathMapper)
Returns an instance of the OAKPrincipalProvider
.-
Methods inherited from interface org.apache.jackrabbit.oak.spi.security.SecurityConfiguration
getCommitHooks, getConflictHandlers, getContext, getMonitors, getName, getParameters, getProtectedItemImporters, getRepositoryInitializer, getValidators, getWorkspaceInitializer
-
-
-
-
Field Detail
-
NAME
static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Method Detail
-
getPrincipalManager
@NotNull @NotNull PrincipalManager getPrincipalManager(Root root, NamePathMapper namePathMapper)
Returns an instance ofPrincipalManager
that can be used to query and retrieve principals such as needed for JCR access control management.- Parameters:
root
- The target root.namePathMapper
- TheNamePathMapper
to be used.- Returns:
- An instance of
PrincipalManager
. - See Also:
JackrabbitSession.getPrincipalManager()
-
getPrincipalProvider
@NotNull @NotNull PrincipalProvider getPrincipalProvider(Root root, NamePathMapper namePathMapper)
Returns an instance of the OAKPrincipalProvider
.Backwards compatibility with Jackrabbit 2.x
Configuration of Principal Providers
In Jackrabbit 2.x the configuration of principal providers was tied to the LoginModule configuration and thus mixing authentication concerns with the principal management. Since OAK makes thePrincipalProvider
a public interface of the SPI, it's configuration goes along with the configuration of the JCR levelPrincipalManager
. The authentication setup may have access to the principal configuration if theSecurityProvider
is made available in theAuthenticationConfiguration
.Multiple Sources for Principals
In Jackrabbit 2.x it was possible to configure multiple principal providers. As of OAK there is only one single principal provider implementation responsible for a given configuration. If principals originate from different sources it is recommended to define a separatePrincipalConfiguration
for each source.- Parameters:
root
- The targetRoot
.namePathMapper
- TheNamePathMapper
to be used.- Returns:
- An instance of
PrincipalProvider
.
-
-