com.caucho.server.rewrite
Class AuthTypeCondition
java.lang.Object
com.caucho.server.rewrite.AbstractCondition
com.caucho.server.rewrite.AuthTypeCondition
- All Implemented Interfaces:
- Condition
public class AuthTypeCondition
- extends AbstractCondition
A rewrite condition that passes if the auth-type is exactly
equal to the specified value.
Valid auth types are BASIC, CLIENT-CERT, DIGEST, FORM.
Method Summary |
java.lang.String |
getTagName()
Returns a descriptive name for the tag, for logging and for
error messages. |
boolean |
isMatch(HttpServletRequest request,
HttpServletResponse response)
Returns true if the condition passes. |
void |
setSendVary(boolean sendVary)
If true, send a "Vary: Cookie" in the response, default is true. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
AuthTypeCondition
public AuthTypeCondition(java.lang.String authType)
getTagName
public java.lang.String getTagName()
- Description copied from interface:
Condition
- Returns a descriptive name for the tag, for logging and for
error messages.
- Specified by:
getTagName
in interface Condition
- Overrides:
getTagName
in class AbstractCondition
setSendVary
public void setSendVary(boolean sendVary)
- If true, send a "Vary: Cookie" in the response, default is true.
isMatch
public boolean isMatch(HttpServletRequest request,
HttpServletResponse response)
- Description copied from interface:
Condition
- Returns true if the condition passes.