Class RegexRule

    • Nested Class Summary

      • Nested classes/interfaces inherited from class org.eclipse.jetty.rewrite.handler.Rule

        Rule.ApplyURI
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.util.regex.Pattern _regex  
    • Constructor Summary

      Constructors 
      Modifier Constructor Description
      protected RegexRule()  
      protected RegexRule​(java.lang.String pattern)  
    • Method Summary

      All Methods Instance Methods Abstract Methods Concrete Methods 
      Modifier and Type Method Description
      protected abstract java.lang.String apply​(java.lang.String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response, java.util.regex.Matcher matcher)
      Apply this rule to the request/response pair.
      java.lang.String getRegex()  
      java.lang.String matchAndApply​(java.lang.String target, javax.servlet.http.HttpServletRequest request, javax.servlet.http.HttpServletResponse response)
      This method calls tests the rule against the request/response pair and if the Rule applies, then the rule's action is triggered.
      void setRegex​(java.lang.String regex)
      Sets the regular expression string used to match with string URI.
      java.lang.String toString()
      Returns the regular expression string.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
    • Field Detail

      • _regex

        protected java.util.regex.Pattern _regex
    • Constructor Detail

      • RegexRule

        protected RegexRule()
      • RegexRule

        protected RegexRule​(java.lang.String pattern)
    • Method Detail

      • setRegex

        public void setRegex​(java.lang.String regex)
        Sets the regular expression string used to match with string URI.
        Parameters:
        regex - the regular expression.
      • getRegex

        public java.lang.String getRegex()
        Returns:
        get the regular expression
      • matchAndApply

        public java.lang.String matchAndApply​(java.lang.String target,
                                              javax.servlet.http.HttpServletRequest request,
                                              javax.servlet.http.HttpServletResponse response)
                                       throws java.io.IOException
        Description copied from class: Rule
        This method calls tests the rule against the request/response pair and if the Rule applies, then the rule's action is triggered.
        Specified by:
        matchAndApply in class Rule
        Parameters:
        target - The target of the request
        request - the request
        response - the response
        Returns:
        The new target if the rule has matched, else null
        Throws:
        java.io.IOException - if unable to match the rule
      • apply

        protected abstract java.lang.String apply​(java.lang.String target,
                                                  javax.servlet.http.HttpServletRequest request,
                                                  javax.servlet.http.HttpServletResponse response,
                                                  java.util.regex.Matcher matcher)
                                           throws java.io.IOException
        Apply this rule to the request/response pair. Called by matchAndApply(String, HttpServletRequest, HttpServletResponse) if the regex matches.
        Parameters:
        target - field to attempt match
        request - request object
        response - response object
        matcher - The Regex matcher that matched the request (with capture groups available for replacement).
        Returns:
        The target (possible updated).
        Throws:
        java.io.IOException - exceptions dealing with operating on request or response objects
      • toString

        public java.lang.String toString()
        Returns the regular expression string.
        Overrides:
        toString in class Rule