Package | Description |
---|---|
org.glassfish.jersey.server.model |
Jersey server-side application & resource modeling classes.
|
Modifier and Type | Field and Description |
---|---|
private ResourceMethod.Data |
ResourceMethod.data |
private ResourceMethod.Data |
Resource.Data.subResourceLocator |
private ResourceMethod.Data |
Resource.Builder.subResourceLocator |
Modifier and Type | Field and Description |
---|---|
private java.util.List<ResourceMethod.Data> |
Resource.Data.resourceMethods |
private java.util.List<ResourceMethod.Data> |
Resource.Builder.resourceMethods |
Modifier and Type | Method and Description |
---|---|
(package private) ResourceMethod.Data |
ResourceMethod.getData()
Get model data represented by this resource method.
|
Modifier and Type | Method and 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.
|
Modifier and Type | Method and 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.
|
Constructor and 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.
|
Constructor and 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.
|