Package javax.ws.rs.ext
Interface ContextResolver<T>
-
public interface ContextResolver<T>
Contract for a provider that supplies context information to resource classes and other providers. An implementation of this interface must be annotated withProvider
. AContextResolver
implementation may be annotated withProduces
to restrict the media types for which it will be considered suitable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
getContext(Class<?> type)
Get a context of typeT
that is applicable to the supplied type.
-