com.caucho.rewrite
Class NotAnd
java.lang.Object
com.caucho.rewrite.NotAnd
- All Implemented Interfaces:
- RequestPredicate
public class NotAnd
- extends java.lang.Object
- implements RequestPredicate
Matches if all of the child predicates fail. The predicate may be used
for security and rewrite actions.
<resin:Forbidden url-pattern="/admin/*"
xmlns:resin="urn:java:com.caucho.resin">
<resin:NotAnd>
<resin:IfRole name="admin"/>
<resin:IfNetwork value="192.168/16"/>
</resin:NotAnd>
</resin:Allow>
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
NotAnd
public NotAnd()
add
@Configurable
public void add(RequestPredicate predicate)
- Add a child predicate. One child must fail for NotAnd to pass.
- Parameters:
predicate
- the 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