Package org.glassfish.jersey.process
Interface Inflector<DATA,RESULT>
-
- Type Parameters:
DATA
- transformable data type.RESULT
- type of result produced by a successful inflector data transformation.
- All Known Implementing Classes:
ApacheConnector
,HttpUrlConnector
,JdkConnector
,JettyConnector
,OptionsMethodProcessor.GenericOptionsInflector
,OptionsMethodProcessor.PlainTextOptionsInflector
,ResourceMethodInvoker
,WadlModelProcessor.OptionsHandler
public interface Inflector<DATA,RESULT>
A generic interface for transforming data into a result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RESULT
apply(DATA data)
Transform data of a given type into a result of the different type.
-