Interface RequestPredicates.Visitor

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and TypeMethodDescription
      voidand()
      Receive "middle" notification of a logical AND predicate.
      voidendAnd()
      Receive last notification of a logical AND predicate.
      voidendNegate()
      Receive last notification of a negated predicate.
      voidendOr()
      Receive last notification of a logical OR predicate.
      voidheader​(String name, String value)
      Receive notification of an HTTP header predicate.
      voidmethod​(Set<HttpMethod> methods)
      Receive notification of an HTTP method predicate.
      voidor()
      Receive "middle" notification of a logical OR predicate.
      voidparam​(String name, String value)
      Receive notification of a parameter predicate.
      voidpath​(String pattern)
      Receive notification of an path predicate.
      voidpathExtension​(String extension)
      Receive notification of an path extension predicate.
      voidstartAnd()
      Receive first notification of a logical AND predicate.
      voidstartNegate()
      Receive first notification of a negated predicate.
      voidstartOr()
      Receive first notification of a logical OR predicate.
      voidunknown​(RequestPredicate predicate)
      Receive first notification of an unknown predicate.