Package org.jboss.resteasy.spi.metadata
Interface ResourceClassProcessor
-
public interface ResourceClassProcessor
SPI which allows implementations to modify the resource metadata discovered by RESTEasy.- Author:
- Christian Kaltepoth
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceClass
process(ResourceClass clazz)
Allows the implementation of this method to modify the resource metadata represented by the suppliedResourceClass
instance.
-
-
-
Method Detail
-
process
ResourceClass process(ResourceClass clazz)
Allows the implementation of this method to modify the resource metadata represented by the suppliedResourceClass
instance. Implementation will typically create wrappers which modify only certain aspects of the metadata.- Parameters:
clazz
- The original metadata- Returns:
- the (potentially modified) metadata (never null)
-
-