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 anIoHandlerChain
contains.- Author:
- Apache MINA Project
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IoHandlerCommand
getCommand()
String
getName()
IoHandlerCommand.NextCommand
getNextCommand()
-
-
-
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.NextCommand
of the command.
-
-