com.caucho.rewrite
Class And
java.lang.Object
com.caucho.rewrite.And
- All Implemented Interfaces:
- RequestPredicate
@Configurable
public class And
- extends java.lang.Object
- implements RequestPredicate
Matches if all of the child predicates match.
The predicate may be used for security and rewrite conditions.
<resin:Dispatch url-pattern="/admin/*">
xmlns:resin="urn:java:com.caucho.resin">
<resin:And>
<resin:IfNetwork value="192.168.1.10"/>
<resin:IfRole/>
</resin:And>
</resin:Dispatch>
Constructor Summary |
And()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
And
public And()
add
@Configurable
public void add(RequestPredicate predicate)
- Add a child predicate. Each child must pass for And to pass.
- Parameters:
predicate
- the new child predicate
init
@PostConstruct
public void init()
isMatch
public boolean isMatch(HttpServletRequest request)
- True if the predicate matches.
- Specified by:
isMatch
in interface RequestPredicate
- Parameters:
request
- the servlet request to test
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object