Class MethodRouting
- java.lang.Object
-
- org.glassfish.jersey.server.internal.routing.MethodRouting
-
final class MethodRouting extends java.lang.ObjectA combination of a resource method model and the corresponding routers.
-
-
Field Summary
Fields Modifier and Type Field Description (package private) ResourceMethodmethodResource method model.(package private) java.util.List<Router>routersResource method routers.
-
Constructor Summary
Constructors Constructor Description MethodRouting(ResourceMethod method, Router... routers)Create a new instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringtoString()
-
-
-
Field Detail
-
method
final ResourceMethod method
Resource method model.
-
routers
final java.util.List<Router> routers
Resource method routers.
-
-
Constructor Detail
-
MethodRouting
MethodRouting(ResourceMethod method, Router... routers)
Create a new instance.- Parameters:
method- Resource method handler.routers- Routers that are needed to execute themodel. These routers should contain aendpoint routeras the (last) terminal router.
-
-