Package mireka.filter
Interface Filter
-
- All Superinterfaces:
FilterBase
- All Known Implementing Classes:
AbstractFilter,DataRecipientFilterAdapter
public interface Filter extends FilterBase
Implementing classes are active parts of a filter chain. Their methods explicitly call the corresponding method of the next filter. In this way they are able to get information about the results of methods of the following filters. This design is similar to Servlet Filters.- See Also:
- ServletFilter in the Servlet API
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetChain(FilterChain chain)an implementation must store the supplied view to the next filter in the chain.-
Methods inherited from interface mireka.filter.FilterBase
begin, data, done, from, recipient, verifyRecipient
-
-
-
-
Method Detail
-
setChain
void setChain(FilterChain chain)
an implementation must store the supplied view to the next filter in the chain. All methods of the implementing class which has a corresponding method inFilterChainmust call the latter method.
-
-