- and(Predicate<StreamingHttpRequest>) - Method in interface RouteContinuation
-
Extends the current route such that it matches StreamingHttpRequests with a user-specified
predicate.
- and(BiPredicate<ConnectionContext, StreamingHttpRequest>) - Method in interface RouteContinuation
-
Extends the current route such that it matches StreamingHttpRequest and ConnectionContext with a
user-specified predicate.
- andCookie(String) - Method in interface RouteContinuation
-
Extends the current route with a
CookieMatcher that matches against
HttpSetCookies with the name
name.
- andHeader(CharSequence) - Method in interface RouteContinuation
-
- andIsNotSsl() - Method in interface RouteContinuation
-
Extends the current route such that it matches requests that are not over SSL/TLS.
- andIsSsl() - Method in interface RouteContinuation
-
Extends the current route such that it matches requests that are over SSL/TLS.
- andMethod(HttpRequestMethod) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the HttpRequestMethod is method.
- andMethodIsOneOf(HttpRequestMethod...) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the HttpRequestMethod is one of the
methods.
- andPathEquals(String) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the path is equal to path.
- andPathIsOneOf(String...) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the path is equal to any of the specified
paths.
- andPathMatches(String) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the path matches the regex pathRegex.
- andPathMatches(Pattern) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the path matches the regex pathRegex.
- andPathStartsWith(String) - Method in interface RouteContinuation
-
Extends the current route such that it matches requests where the path starts with pathPrefix.
- andQueryParam(String) - Method in interface RouteContinuation
-
Extends the current route with a
StringMultiValueMatcher that matches against the value(s) of the
request parameter
name.