Class AbstractAuthenticationHandler
- java.lang.Object
- 
- io.netty.channel.ChannelHandlerAdapter
- 
- io.netty.channel.ChannelInboundHandlerAdapter
- 
- org.apache.tinkerpop.gremlin.server.handler.AbstractAuthenticationHandler
 
 
 
- 
- All Implemented Interfaces:
- io.netty.channel.ChannelHandler,- io.netty.channel.ChannelInboundHandler
 - Direct Known Subclasses:
- HttpBasicAuthenticationHandler,- SaslAuthenticationHandler
 
 public abstract class AbstractAuthenticationHandler extends io.netty.channel.ChannelInboundHandlerAdapterProvides an abstraction point to allow for http auth schemes beyond basic auth.
- 
- 
Field SummaryFields Modifier and Type Field Description protected Authenticatorauthenticatorprotected Authorizerauthorizer
 - 
Constructor SummaryConstructors Constructor Description AbstractAuthenticationHandler(Authenticator authenticator)Deprecated.As of release 3.5.0, replaced byAbstractAuthenticationHandler(Authenticator, Authorizer).AbstractAuthenticationHandler(Authenticator authenticator, Authorizer authorizer)
 - 
Method Summary- 
Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapterchannelActive, channelInactive, channelRead, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggered
 - 
Methods inherited from class io.netty.channel.ChannelHandlerAdapterensureNotSharable, handlerAdded, handlerRemoved, isSharable
 
- 
 
- 
- 
- 
Field Detail- 
authenticatorprotected final Authenticator authenticator 
 - 
authorizerprotected final Authorizer authorizer 
 
- 
 - 
Constructor Detail- 
AbstractAuthenticationHandler@Deprecated public AbstractAuthenticationHandler(Authenticator authenticator) Deprecated.As of release 3.5.0, replaced byAbstractAuthenticationHandler(Authenticator, Authorizer).
 - 
AbstractAuthenticationHandlerpublic AbstractAuthenticationHandler(Authenticator authenticator, Authorizer authorizer) 
 
- 
 
-