![JAR search and dependency download from the Maven repository](/logo.png)
org.infinispan.server.resp.authentication.RespAuthenticator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of infinispan-server-resp Show documentation
Show all versions of infinispan-server-resp Show documentation
Infinispan Resp Protocol Server
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