Uses of Class
org.glassfish.jersey.server.model.ResourceMethod.Data
-
Packages that use ResourceMethod.Data Package Description org.glassfish.jersey.server.model Jersey server-side application & resource modeling classes. -
-
Uses of ResourceMethod.Data in org.glassfish.jersey.server.model
Fields in org.glassfish.jersey.server.model declared as ResourceMethod.Data Modifier and Type Field Description private ResourceMethod.Data
ResourceMethod. data
private ResourceMethod.Data
Resource.Builder. subResourceLocator
private ResourceMethod.Data
Resource.Data. subResourceLocator
Fields in org.glassfish.jersey.server.model with type parameters of type ResourceMethod.Data Modifier and Type Field Description private java.util.List<ResourceMethod.Data>
Resource.Builder. resourceMethods
private java.util.List<ResourceMethod.Data>
Resource.Data. resourceMethods
Methods in org.glassfish.jersey.server.model that return ResourceMethod.Data Modifier and Type Method Description (package private) ResourceMethod.Data
ResourceMethod. getData()
Get model data represented by this resource method.Methods in org.glassfish.jersey.server.model with parameters of type ResourceMethod.Data Modifier and Type Method Description (package private) void
Resource.Builder. onBuildMethod(ResourceMethod.Builder builder, ResourceMethod.Data methodData)
Called when a new resource, sub-resource and sub-resource locator method was built and should be registered with the resource builder.Method parameters in org.glassfish.jersey.server.model with type arguments of type ResourceMethod.Data Modifier and Type Method Description (package private) static java.util.List<ResourceMethod>
ResourceMethod. transform(Resource parent, java.util.List<ResourceMethod.Data> list)
Transform a collection of resource method data into resource method models.Constructors in org.glassfish.jersey.server.model with parameters of type ResourceMethod.Data Constructor Description Data(java.util.List<java.lang.String> names, java.lang.String path, java.util.List<ResourceMethod.Data> resourceMethods, ResourceMethod.Data subResourceLocator, java.util.List<Resource.Data> childResources, java.util.Set<java.lang.Class<?>> handlerClasses, java.util.Set<java.lang.Object> handlerInstances, boolean extended)
Create a new immutable resource data holder from the supplied parameters.ResourceMethod(Resource parent, ResourceMethod.Data data)
Create new resource method model instance.
-