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.Object
Represents a name-command pair that anIoHandlerChain
contains.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IoHandlerCommand
getCommand()
Returns the command.java.lang.String
getName()
Returns the name of the command.IoHandlerCommand.NextCommand
getNextCommand()
Returns theIoHandlerCommand.NextCommand
of 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.NextCommand
of the command.
-
-