org.apache.jackrabbit.oak.spi.security.authentication.Authentication Maven / Gradle / Ivy
Show all versions of aem-sdk-api Show documentation
/*
* 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.authentication;
import java.security.Principal;
import javax.jcr.Credentials;
import javax.security.auth.login.LoginException;
import org.jetbrains.annotations.Nullable;
import org.osgi.annotation.versioning.ProviderType;
/**
* The {@code Authentication} interface defines methods to validate
* {@link javax.jcr.Credentials Credentials} during the
* {@link javax.security.auth.spi.LoginModule#login() login step} of the
* authentication process. The validation depends on the authentication
* mechanism in place.
*
* A given implementation may only handle certain types of {@code Credentials}
* as the authentication process is tightly coupled to the semantics of the
* {@code Credentials}.
*
* For example a implementation may only be able to validate UserID/password
* pairs such as passed with {@link javax.jcr.SimpleCredentials}, while another
* might be responsible for validating login token issued by the repository or
* an external access token generation mechanism.
*/
@ProviderType
public interface Authentication {
/**
* Validates the specified {@code Credentials} and returns {@code true} if
* the validation was successful.
*
* @param credentials to verify
* @return {@code true} if the validation was successful; {@code false}
* if the specified credentials are not supported and this authentication
* implementation cannot verify their validity.
* @throws LoginException if the authentication failed.
*/
boolean authenticate(@Nullable Credentials credentials) throws LoginException;
/**
* Optional method that return the userID extracted upon {@link #authenticate(Credentials)}.
* It is expected to return {@code null} if the implementation doesn't support this.
*
* An {@link IllegalStateException} may be thrown if called prior to {@link #authenticate(Credentials)}.
*
* @return a user identifier or {@code null}
*/
@Nullable
String getUserId();
/**
* Optional method that return the {@link Principal} of the authenticating user
* extracted upon {@link #authenticate(Credentials)}. It is expected to return
* {@code null} if the implementation doesn't support this.
*
* An {@link IllegalStateException} may be thrown if called prior to {@link #authenticate(Credentials)}.
*
* @return a valid {@code Principal} or {@code null}
*/
@Nullable
Principal getUserPrincipal();
}