Uses of Class
com.caucho.server.rewrite.AbstractCondition

Packages that use AbstractCondition
com.caucho.server.rewrite   
 

Uses of AbstractCondition in com.caucho.server.rewrite
 

Subclasses of AbstractCondition in com.caucho.server.rewrite
 class AbstractConditions
           
 class AndConditions
           
 class AuthTypeCondition
          A rewrite condition that passes if the auth-type is exactly equal to the specified value.
 class CookieCondition
          A rewrite condition that passes if a named cookie exists and has a value that matches a regular expression.
 class ExistsCondition
          A rewrite condition that passes if the target exists.
 class ExprCondition
          A RewriteDispatch condition that is an el expression.
 class HeaderCondition
          A rewrite condition that passes if the value of a named header matches a regexp.
 class LocaleCondition
          A rewrite condition that passes if the value of the Locale matches a regexp.
 class LocalPortCondition
          A rewrite condition that passes if the value of ServletRequest.getLocalPort() matches a regexp.
 class MethodCondition
          A rewrite condition that passes if the method is exactly equal to the specified value.
 class NotConditions
           
 class OrConditions
           
 class QueryParamCondition
          A rewrite condition that passes if the value of a query parameter exists and matches a regular expression.
 class RemoteAddrCondition
           
 class RemoteUserCondition
          A rewrite condition that passes if the client has been authenticated and the remote user has the specified name, as determined by HttpServletRequest.getRemoteUser().
 class SecureCondition
          A rewrite condition that passes if the request is secure, as determined by ServletRequest.isSecure().
 class ServerNameCondition
          A rewrite condition that passes if the value of ServletRequest.getServerName() matches a regexp.
 class ServerPortCondition
          A rewrite condition that passes if the value of ServletRequest.getServerPort() matches a regexp.
 class UserInRoleCondition
          A rewrite condition that passes if the client has been authenticated and the user is in the specified role, as determined by HttpServletRequest.isUserInRole(String)