Package org.apache.mina.handler.chain
Class IoHandlerChain.Entry
- java.lang.Object
-
- org.apache.mina.handler.chain.IoHandlerChain.Entry
-
- Enclosing class:
- IoHandlerChain
public class IoHandlerChain.Entry extends java.lang.ObjectRepresents a name-command pair that anIoHandlerChaincontains.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IoHandlerCommandgetCommand()Returns the command.java.lang.StringgetName()Returns the name of the command.IoHandlerCommand.NextCommandgetNextCommand()Returns theIoHandlerCommand.NextCommandof the command.
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Returns the name of the command.
-
getCommand
public IoHandlerCommand getCommand()
Returns the command.
-
getNextCommand
public IoHandlerCommand.NextCommand getNextCommand()
Returns theIoHandlerCommand.NextCommandof the command.
-
-