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

org.infinispan.server.resp.authentication.RespAuthenticator Maven / Gradle / Ivy

There is a newer version: 15.1.4.Final
Show newest version
package org.infinispan.server.resp.authentication;

import java.util.concurrent.CompletionStage;

import javax.security.auth.Subject;
import javax.security.sasl.SaslException;

import io.netty.channel.Channel;

public interface RespAuthenticator {

   CompletionStage clientCertAuth(Channel channel) throws SaslException;

   CompletionStage usernamePasswordAuth(String username, char[] password);

   boolean isClientCertAuthEnabled();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy