Class SaslAuthenticationHandler
- java.lang.Object
-
- io.netty.channel.ChannelHandlerAdapter
-
- io.netty.channel.ChannelInboundHandlerAdapter
-
- org.apache.tinkerpop.gremlin.server.handler.AbstractAuthenticationHandler
-
- org.apache.tinkerpop.gremlin.server.handler.SaslAuthenticationHandler
-
- All Implemented Interfaces:
io.netty.channel.ChannelHandler
,io.netty.channel.ChannelInboundHandler
- Direct Known Subclasses:
SaslAndHttpBasicAuthenticationHandler
@Sharable public class SaslAuthenticationHandler extends AbstractAuthenticationHandler
A SASL authentication handler that allows theAuthenticator
to be plugged into it. This handler is meant to be used with protocols that process aRequestMessage
such as theWebSocketChannelizer
- Author:
- Stephen Mallette (http://stephen.genoprime.com)
-
-
Field Summary
Fields Modifier and Type Field Description protected Settings
settings
-
Fields inherited from class org.apache.tinkerpop.gremlin.server.handler.AbstractAuthenticationHandler
authenticator, authorizer
-
-
Constructor Summary
Constructors Constructor Description SaslAuthenticationHandler(Authenticator authenticator, Authorizer authorizer, Settings settings)
SaslAuthenticationHandler(Authenticator authenticator, Settings settings)
Deprecated.As of release 3.5.0, replaced bySaslAuthenticationHandler(Authenticator, Authorizer, Settings)
.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
channelRead(io.netty.channel.ChannelHandlerContext ctx, Object msg)
-
Methods inherited from class io.netty.channel.ChannelInboundHandlerAdapter
channelActive, channelInactive, channelReadComplete, channelRegistered, channelUnregistered, channelWritabilityChanged, exceptionCaught, userEventTriggered
-
Methods inherited from class io.netty.channel.ChannelHandlerAdapter
ensureNotSharable, handlerAdded, handlerRemoved, isSharable
-
-
-
-
Field Detail
-
settings
protected final Settings settings
-
-
Constructor Detail
-
SaslAuthenticationHandler
@Deprecated public SaslAuthenticationHandler(Authenticator authenticator, Settings settings)
Deprecated.As of release 3.5.0, replaced bySaslAuthenticationHandler(Authenticator, Authorizer, Settings)
.
-
SaslAuthenticationHandler
public SaslAuthenticationHandler(Authenticator authenticator, Authorizer authorizer, Settings settings)
-
-