org.apache.jackrabbit.oak.spi.security.principal.PrincipalConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.apache.jackrabbit.oak.spi.security.principal;
import org.apache.jackrabbit.api.security.principal.PrincipalManager;
import org.apache.jackrabbit.oak.api.Root;
import org.apache.jackrabbit.oak.namepath.NamePathMapper;
import org.apache.jackrabbit.oak.spi.security.SecurityConfiguration;
import org.jetbrains.annotations.NotNull;
/**
* Configuration interface for principal management.
*/
public interface PrincipalConfiguration extends SecurityConfiguration {
String NAME = "org.apache.jackrabbit.oak.principal";
/**
* Returns an instance of {@link PrincipalManager} that can be used
* to query and retrieve principals such as needed for JCR access control
* management.
*
* @param root The target root.
* @param namePathMapper The {@code NamePathMapper} to be used.
* @return An instance of {@link PrincipalManager}.
* @see org.apache.jackrabbit.api.JackrabbitSession#getPrincipalManager()
*/
@NotNull
PrincipalManager getPrincipalManager(Root root, NamePathMapper namePathMapper);
/**
* Returns an instance of the OAK {@link PrincipalProvider}.
*
* 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 the {@code PrincipalProvider}
* a public interface of the SPI, it's configuration goes along with the
* configuration of the JCR level {@link PrincipalManager}. The authentication
* setup may have access to the principal configuration if the
* {@link org.apache.jackrabbit.oak.spi.security.SecurityProvider} is
* made available in the {@link org.apache.jackrabbit.oak.spi.security.authentication.AuthenticationConfiguration}.
*
* 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 separate {@link PrincipalConfiguration}
* for each source.
*
* @param root The target {@code Root}.
* @param namePathMapper The {@code NamePathMapper} to be used.
* @return An instance of {@link PrincipalProvider}.
*/
@NotNull
PrincipalProvider getPrincipalProvider(Root root, NamePathMapper namePathMapper);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy