Package org.apache.mina.common
Interface IoFilterChain.Entry
- Enclosing interface:
IoFilterChain
public static interface IoFilterChain.Entry
Represents a name-filter pair that an
IoFilterChain
contains.-
Method Summary
Modifier and TypeMethodDescriptionReturns the filter.getName()
Returns the name of the filter.Returns theIoFilter.NextFilter
of the filter.
-
Method Details
-
getName
String getName()Returns the name of the filter. -
getFilter
IoFilter getFilter()Returns the filter. -
getNextFilter
IoFilter.NextFilter getNextFilter()Returns theIoFilter.NextFilter
of the filter.- Throws:
IllegalStateException
- if theIoFilter.NextFilter
is not available
-