|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface FilterChainResolver
A FilterChainResolver can resolve an appropriate FilterChain to execute during a
ServletRequest. It allows resolution of arbitrary filter chains which can be executed for any given
request or URI/URL.
web.xml servlet filter
definitions: it allows arbitrary filter chains to be defined per URL in a much more concise and easy to read manner,
and even allows filter chains to be dynamically resolved or constructed at runtime if the underlying implementation
supports it.
| Method Summary | |
|---|---|
javax.servlet.FilterChain |
getChain(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
javax.servlet.FilterChain originalChain)
Returns the filter chain that should be executed for the given request, or null if the
original chain should be used. |
| Method Detail |
|---|
javax.servlet.FilterChain getChain(javax.servlet.ServletRequest request,
javax.servlet.ServletResponse response,
javax.servlet.FilterChain originalChain)
null if the
original chain should be used.
This method allows a implementation to define arbitrary security Filter
chains for any given request or URL pattern.
request - the incoming ServletRequestresponse - the outgoing ServletResponseoriginalChain - the original FilterChain intercepted by the ShiroFilter implementation.
null if the
original chain should be used.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||