Class Route
java.lang.Object
org.glassfish.jersey.server.internal.routing.Route
Request routing information. Contains a
routing pattern
and a list of next-level stages
to be processed in case the
routing pattern successfully matches the un-matched right-hand part of the request.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionnext()
Get next-level routers to be processed in case the routing pattern matches the unmatched right-hand part of the request path.(package private) static Route
of
(PathPattern routingPattern, List<Router> routers) Create a new request route.Get the request path routing pattern.
-
Field Details
-
routingPattern
-
routers
-
-
Constructor Details
-
Route
-
-
Method Details
-
of
Create a new request route.- Parameters:
routingPattern
- request path routing pattern.routers
- next-level routers to be processed in case the routing pattern matches the unmatched right-hand part of the request path.- Returns:
- new request route.
-
routingPattern
Get the request path routing pattern.- Returns:
- request path routing pattern.
-
next
Get next-level routers to be processed in case the routing pattern matches the unmatched right-hand part of the request path.- Returns:
- routed next-level next.
-