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. AContextResolverimplementation may be annotated withProducesto restrict the media types for which it will be considered suitable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description TgetContext(java.lang.Class<?> type)Get a context of typeTthat is applicable to the supplied type.
-
-
-
Method Detail
-
getContext
T getContext(java.lang.Class<?> type)
Get a context of typeTthat is applicable to the supplied type.- Parameters:
type- the class of object for which a context is desired- Returns:
- a context for the supplied type or
nullif a context for the supplied type is not available from this provider.
-
-