com.caucho.rewrite
Interface RewriteFilter

All Known Implementing Classes:
AbstractRewriteFilter, AddHeader, RewriteFilterAdapter, SetHeader, SetRequestSecure, SetVary

public interface RewriteFilter


Method Summary
 boolean isForward()
           
 boolean isInclude()
           
 boolean isRequest()
           
 FilterChain map(java.lang.String uri, java.lang.String queryString, FilterChain next)
          Creates a FilterChain for the action based on the uri and query string.
 

Method Detail

isRequest

boolean isRequest()

isInclude

boolean isInclude()

isForward

boolean isForward()

map

FilterChain map(java.lang.String uri,
                java.lang.String queryString,
                FilterChain next)
                throws ServletException
Creates a FilterChain for the action based on the uri and query string.

Parameters:
uri - the request URI to match against
queryString - the request query string to match against
next - the next rewrite FilterChain dispatch
Throws:
ServletException