Package org.dcache.xrootd.plugins
Interface ChannelHandlerFactory
-
- All Known Implementing Classes:
SSLHandlerFactory,XrootdAuthenticationHandlerFactory,XrootdAuthorizationHandlerFactory
public interface ChannelHandlerFactory
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.netty.channel.ChannelHandlercreateHandler()Creates a new channel handler.java.lang.StringgetDescription()Returns a human readable description of the channel handler plugin.java.lang.StringgetName()Returns the name under which this plugin can be loaded.
-
-
-
Method Detail
-
getName
java.lang.String getName()
Returns the name under which this plugin can be loaded.
-
getDescription
java.lang.String getDescription()
Returns a human readable description of the channel handler plugin.
-
createHandler
io.netty.channel.ChannelHandler createHandler()
Creates a new channel handler. The channel handler is only valid for a single connection.- Returns:
- the new channel handler instance
-
-