javawebparts.filter
Interface AppAvailabilityBypassCheck
- public interface AppAvailabilityBypassCheck
This interface is the interface a class must implement to be used
to do a bypass check. A bypass check allows a request to continue even
when the app is not available (i.e., allowing administrators to still
access an unavailable application). It can do any kind of check the
developer wants, it simply must implement the single doBypass() method
and return true if the filter should allow the request no matter what.
- Author:
- Frank W. Zammetti.
Method Summary |
boolean |
doBypass(javax.servlet.ServletRequest inRequest)
This method, when implemented, should return true if the filter should
allow the request anyway, effectively bypassing itself. |
doBypass
public boolean doBypass(javax.servlet.ServletRequest inRequest)
- This method, when implemented, should return true if the filter should
allow the request anyway, effectively bypassing itself.
- Parameters:
inRequest
- ServletRequest being serviced.
- Returns:
- True if the request should continue, false otherwise.
Copyright © 2005 Frank W. Zammetti