Class OptionsMethodProcessor
java.lang.Object
org.glassfish.jersey.server.wadl.processor.OptionsMethodProcessor
- All Implemented Interfaces:
ModelProcessor
Model processor
enhancing resource model
and sub resources
by default OPTIONS methods defined by JAX-RS specification.- Author:
- Miroslav Fuksa
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionprocessResourceModel
(ResourceModel resourceModel, Configuration configuration) ProcessresourceModel
and return the processed model.processSubResource
(ResourceModel subResourceModel, Configuration configuration) ProcesssubResourceModel
which was returned a sub resource locator.
-
Constructor Details
-
OptionsMethodProcessor
public OptionsMethodProcessor()Creates new instance.
-
-
Method Details
-
processResourceModel
Description copied from interface:ModelProcessor
ProcessresourceModel
and return the processed model. Returning inputresourceModel
will cause no effect on the final resource model.- Specified by:
processResourceModel
in interfaceModelProcessor
- Parameters:
resourceModel
- Input resource model to be processed.configuration
- Runtime configuration.- Returns:
- Processed resource model containing root resources. Non root resources will be ignored.
-
processSubResource
public ResourceModel processSubResource(ResourceModel subResourceModel, Configuration configuration) Description copied from interface:ModelProcessor
ProcesssubResourceModel
which was returned a sub resource locator. ThesubResourceModel
contains only oneresource
representing model that should be processed by further matching. The method must return also exactly one resource in the model. Returning inputsubResourceModel
instance will cause no effect on the final sub resource model.- Specified by:
processSubResource
in interfaceModelProcessor
- Parameters:
subResourceModel
-Sub resource
which is based on sub resource returned from sub resource locator.configuration
- Runtime configuration.- Returns:
- Processed resource model with one
resource
which should be used for handling sub resource.
-