Package javax.ws.rs.ext
Interface ContextResolver<T>
-
- Type Parameters:
T- type of the context
public interface ContextResolver<T>Contract for a provider that supplies context information to resource classes and other providers. AContextResolverimplementation may be annotated withProducesto restrict the media types for which it will be considered suitable.Providers implementing
ContextResolvercontract must be either programmatically registered in an API runtime or must be annotated with@Providerannotation to be automatically discovered by the runtime during a provider scanning phase.- Since:
- 1.0
- Author:
- Paul Sandoz, Marc Hadley
- See Also:
Context,Providers.getContextResolver(Class, javax.ws.rs.core.MediaType),Provider,Produces
-
-
Method Summary
Modifier and Type Method Description TgetContext(Class<?> type)Get a context of typeTthat is applicable to the supplied type.
-