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 Object
Represents a name-command pair that anIoHandlerChaincontains.- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IoHandlerCommandgetCommand()StringgetName()IoHandlerCommand.NextCommandgetNextCommand()
-
-
-
Method Detail
-
getName
public String getName()
- Returns:
- the name of the command.
-
getCommand
public IoHandlerCommand getCommand()
- Returns:
- the command.
-
getNextCommand
public IoHandlerCommand.NextCommand getNextCommand()
- Returns:
- the
IoHandlerCommand.NextCommandof the command.
-
-