|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.caucho.rewrite.IfQueryParam
@Configurable public class IfQueryParam
Passes if the named parameter exists and has a value that matches a regular expression.
<web-app xmlns:resin="urn:java:com.caucho.resin"> <resin:Forbidden regexp="^/local/"> <resin:IfQueryParam name="foo" regexp="bar"/> </resin:Forbidden> </web-app>
RequestPredicates may be used for both security and rewrite conditions.
Constructor Summary | |
---|---|
IfQueryParam()
|
Method Summary | |
---|---|
void |
init()
|
boolean |
isMatch(HttpServletRequest request)
True if the predicate matches. |
void |
setName(java.lang.String name)
Sets the name of the query parameter to test. |
void |
setRegexp(java.util.regex.Pattern regexp)
Sets the regular expression to compare against the query parameter. |
void |
setValue(java.util.regex.Pattern regexp)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public IfQueryParam()
Method Detail |
---|
@Configurable public void setName(java.lang.String name)
name
- the name of the parameter.@Configurable public void setRegexp(java.util.regex.Pattern regexp)
regexp
- the regular expression to testpublic void setValue(java.util.regex.Pattern regexp)
@PostConstruct public void init()
public boolean isMatch(HttpServletRequest request)
isMatch
in interface CacheablePredicate
isMatch
in interface RequestPredicate
request
- the servlet request to test
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |