Package io.undertow.predicate
Class RegularExpressionPredicate
- java.lang.Object
-
- io.undertow.predicate.RegularExpressionPredicate
-
- All Implemented Interfaces:
Predicate
public class RegularExpressionPredicate extends java.lang.Object implements Predicate
A predicate that does a regex match against an exchange.By default this match is done against the relative URI, however it is possible to set it to match against other exchange attributes.
- Author:
- Stuart Douglas
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
RegularExpressionPredicate.Builder
-
Field Summary
-
Fields inherited from interface io.undertow.predicate.Predicate
PREDICATE_CONTEXT
-
-
Constructor Summary
Constructors Constructor Description RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute)
RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute, boolean requireFullMatch)
RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute, boolean requireFullMatch, boolean caseSensitive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
resolve(HttpServerExchange value)
java.lang.String
toString()
-
-
-
Constructor Detail
-
RegularExpressionPredicate
public RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute, boolean requireFullMatch, boolean caseSensitive)
-
RegularExpressionPredicate
public RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute, boolean requireFullMatch)
-
RegularExpressionPredicate
public RegularExpressionPredicate(java.lang.String regex, ExchangeAttribute matchAttribute)
-
-
Method Detail
-
resolve
public boolean resolve(HttpServerExchange value)
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-