All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.jackrabbit.oak.spi.security.authentication.Authentication Maven / Gradle / Ivy

/*
 * 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 javax.annotation.Nullable;
import javax.jcr.Credentials;
import javax.security.auth.login.LoginException;

/**
 * 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. */ 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; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy