org.glassfish.jersey.server.model
Interface ModelProcessor

All Known Implementing Classes:
OptionsMethodProcessor, WadlModelProcessor

@Contract
@ConstrainedTo(value=SERVER)
public interface ModelProcessor

Contract for a model processors that processes resource models during application initialization and resource returned by sub resource locators. Even though model processors can completely change the resource model, the standard use case it to enhance the current resource model by additional methods and resources (like for example adding OPTIONS http methods for every URI endpoint).

More model processors can be registered. These providers will be execute in the chain so that each model processor will be executed with resource model processed by the previous model processor. The first model processor in the chain will be invoked with the initial resource model from which the application was initiated.

Model processors implementations can define binding priority to define the order in which they are executed (processors with a lower priority is invoked before processor with a higher priority). The highest possible priority (Integer.MAX_VALUE) is used for model processor which enhance resource models by the default OPTIONS method defined by JAX-RS specification and therefore this priority should not be used.

Author:
Miroslav Fuksa (miroslav.fuksa at oracle.com)

Method Summary
 ResourceModel processResourceModel(ResourceModel resourceModel, Configuration configuration)
          Process resourceModel and return the processed model.
 ResourceModel processSubResource(ResourceModel subResourceModel, Configuration configuration)
          Process subResourceModel which was returned a sub resource locator.
 

Method Detail

processResourceModel

ResourceModel processResourceModel(ResourceModel resourceModel,
                                   Configuration configuration)
Process resourceModel and return the processed model. Returning input resourceModel will cause no effect on the final resource model.

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

ResourceModel processSubResource(ResourceModel subResourceModel,
                                 Configuration configuration)
Process subResourceModel which was returned a sub resource locator.

The subResourceModel contains only one resource representing model that should be processed by further matching. The method must return also exactly one resource in the model. Returning input subResourceModel instance will cause no effect on the final sub resource model.

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.


Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.