|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectjavax.ws.rs.ext.RuntimeDelegate
org.jboss.resteasy.spi.ResteasyProviderFactory
org.jboss.resteasy.core.ThreadLocalResteasyProviderFactory
public class ThreadLocalResteasyProviderFactory
Allow applications to push/pop provider factories onto the stack
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class javax.ws.rs.ext.RuntimeDelegate |
|---|
RuntimeDelegate.HeaderDelegate<T> |
| Field Summary |
|---|
| Fields inherited from class javax.ws.rs.ext.RuntimeDelegate |
|---|
JAXRS_RUNTIME_DELEGATE_PROPERTY |
| Constructor Summary | |
|---|---|
ThreadLocalResteasyProviderFactory(ResteasyProviderFactory defaultFactory)
|
|
| Method Summary | ||
|---|---|---|
void |
addContextResolver(java.lang.Class<? extends ContextResolver> resolver)
|
|
void |
addContextResolver(ContextResolver provider)
|
|
void |
addExceptionMapper(java.lang.Class<? extends ExceptionMapper> provider)
|
|
void |
addExceptionMapper(ExceptionMapper provider)
|
|
void |
addHeaderDelegate(java.lang.Class clazz,
RuntimeDelegate.HeaderDelegate header)
|
|
void |
addMessageBodyReader(java.lang.Class<? extends MessageBodyReader> provider)
|
|
void |
addMessageBodyReader(MessageBodyReader provider)
|
|
void |
addMessageBodyWriter(java.lang.Class<? extends MessageBodyWriter> provider)
|
|
void |
addMessageBodyWriter(MessageBodyWriter provider)
|
|
void |
addStringConverter(java.lang.Class<? extends StringConverter> resolver)
|
|
void |
addStringConverter(StringConverter provider)
|
|
|
createEndpoint(Application applicationConfig,
java.lang.Class<T> endpointType)
this is a spec method that is unsupported. |
|
|
createHeaderDelegate(java.lang.Class<T> tClass)
Obtain an instance of a HeaderDelegate for the supplied class. |
|
Response.ResponseBuilder |
createResponseBuilder()
Create a new instance of a Response.ResponseBuilder. |
|
UriBuilder |
createUriBuilder()
Create a new instance of a UriBuilder. |
|
Variant.VariantListBuilder |
createVariantListBuilder()
Create a new instance of a Variant.VariantListBuilder. |
|
|
getContextResolver(java.lang.Class<T> contextType,
MediaType mediaType)
Get a context resolver for a particular type of context and media type. |
|
java.util.List<ContextResolver> |
getContextResolvers(java.lang.Class<?> clazz,
MediaType type)
|
|
ResteasyProviderFactory |
getDelegate()
|
|
|
getExceptionMapper(java.lang.Class<T> type)
Get an exception mapping provider for a particular class of exception. |
|
InterceptorRegistry |
getInterceptorRegistry()
|
|
|
getMessageBodyReader(java.lang.Class<T> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType)
Get a message body reader that matches a set of criteria. |
|
|
getMessageBodyWriter(java.lang.Class<T> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType)
Get a message body writer that matches a set of criteria. |
|
|
getProvider(java.lang.Class<T> providerClass)
Obtain a registered @Provider instance keyed by class. |
|
StringConverter |
getStringConverter(java.lang.Class<?> clazz)
|
|
protected void |
initialize()
|
|
static void |
pop()
|
|
static void |
push(ResteasyProviderFactory factory)
|
|
void |
registerProvider(java.lang.Class provider)
Register a @Provider class. |
|
void |
registerProviderInstance(java.lang.Object provider)
Register a @Provider object. |
|
| Methods inherited from class org.jboss.resteasy.spi.ResteasyProviderFactory |
|---|
clearContextData, getContextData, getContextDataMap, getInstance, popContextData, pushContext, pushContextDataMap, setInstance |
| Methods inherited from class javax.ws.rs.ext.RuntimeDelegate |
|---|
setInstance |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public ThreadLocalResteasyProviderFactory(ResteasyProviderFactory defaultFactory)
| Method Detail |
|---|
public ResteasyProviderFactory getDelegate()
protected void initialize()
initialize in class ResteasyProviderFactorypublic static void push(ResteasyProviderFactory factory)
public static void pop()
public UriBuilder createUriBuilder()
RuntimeDelegateUriBuilder.
createUriBuilder in class ResteasyProviderFactoryUriBuilderpublic Response.ResponseBuilder createResponseBuilder()
RuntimeDelegateResponse.ResponseBuilder.
createResponseBuilder in class ResteasyProviderFactoryResponse.ResponseBuilderpublic Variant.VariantListBuilder createVariantListBuilder()
RuntimeDelegateVariant.VariantListBuilder.
createVariantListBuilder in class ResteasyProviderFactoryVariant.VariantListBuilderpublic <T> RuntimeDelegate.HeaderDelegate<T> createHeaderDelegate(java.lang.Class<T> tClass)
RuntimeDelegateCookie, CacheControl,
EntityTag, NewCookie,
MediaType and java.util.Date.
createHeaderDelegate in class ResteasyProviderFactorytClass - the class of the header
public void addHeaderDelegate(java.lang.Class clazz,
RuntimeDelegate.HeaderDelegate header)
addHeaderDelegate in class ResteasyProviderFactorypublic void addMessageBodyReader(java.lang.Class<? extends MessageBodyReader> provider)
addMessageBodyReader in class ResteasyProviderFactorypublic void addMessageBodyReader(MessageBodyReader provider)
addMessageBodyReader in class ResteasyProviderFactorypublic void addMessageBodyWriter(java.lang.Class<? extends MessageBodyWriter> provider)
addMessageBodyWriter in class ResteasyProviderFactorypublic void addMessageBodyWriter(MessageBodyWriter provider)
addMessageBodyWriter in class ResteasyProviderFactory
public <T> MessageBodyReader<T> getMessageBodyReader(java.lang.Class<T> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType)
ProvidersmediaType with the value of each reader's
Consumes, ensuring the supplied value of
type is assignable to the generic type of the reader, and
eliminating those that do not match.
The list of matching readers is then ordered with those with the best
matching values of Consumes (x/y > x/* > */*)
sorted first. Finally, the
MessageBodyReader.isReadable(java.lang.Class>, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType)
method is called on each reader in order using the supplied criteria and
the first reader that returns true is selected and returned.
getMessageBodyReader in interface ProvidersgetMessageBodyReader in class ResteasyProviderFactorytype - the class of object that is to be written.genericType - the type of object to be produced. E.g. if the
message body is to be converted into a method parameter, this will be
the formal type of the method parameter as returned by
Class.getGenericParameterTypes.annotations - an array of the annotations on the declaration of the
artifact that will be initialized with the produced instance. E.g. if the
message body is to be converted into a method parameter, this will be
the annotations on that parameter returned by
Class.getParameterAnnotations.mediaType - the media type of the data that will be read.
public void addExceptionMapper(java.lang.Class<? extends ExceptionMapper> provider)
addExceptionMapper in class ResteasyProviderFactorypublic void addExceptionMapper(ExceptionMapper provider)
addExceptionMapper in class ResteasyProviderFactorypublic void addContextResolver(java.lang.Class<? extends ContextResolver> resolver)
addContextResolver in class ResteasyProviderFactorypublic void addContextResolver(ContextResolver provider)
addContextResolver in class ResteasyProviderFactorypublic void addStringConverter(java.lang.Class<? extends StringConverter> resolver)
addStringConverter in class ResteasyProviderFactorypublic void addStringConverter(StringConverter provider)
addStringConverter in class ResteasyProviderFactory
public java.util.List<ContextResolver> getContextResolvers(java.lang.Class<?> clazz,
MediaType type)
getContextResolvers in class ResteasyProviderFactorypublic StringConverter getStringConverter(java.lang.Class<?> clazz)
getStringConverter in class ResteasyProviderFactorypublic void registerProvider(java.lang.Class provider)
ResteasyProviderFactory
registerProvider in class ResteasyProviderFactorypublic void registerProviderInstance(java.lang.Object provider)
ResteasyProviderFactory
registerProviderInstance in class ResteasyProviderFactorypublic <T> T getProvider(java.lang.Class<T> providerClass)
ResteasyProviderFactory
getProvider in class ResteasyProviderFactorypublic <T extends java.lang.Throwable> ExceptionMapper<T> getExceptionMapper(java.lang.Class<T> type)
Providerstype.
getExceptionMapper in interface ProvidersgetExceptionMapper in class ResteasyProviderFactorytype - the class of exception
ExceptionMapper for the supplied type or null if none
is found.
public <T> MessageBodyWriter<T> getMessageBodyWriter(java.lang.Class<T> type,
java.lang.reflect.Type genericType,
java.lang.annotation.Annotation[] annotations,
MediaType mediaType)
ProvidersmediaType with the value of each writer's
Produces, ensuring the supplied value of
type is assignable to the generic type of the reader, and
eliminating those that do not match.
The list of matching writers is then ordered with those with the best
matching values of Produces (x/y > x/* > */*)
sorted first. Finally, the
MessageBodyWriter.isWriteable(java.lang.Class>, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType)
method is called on each writer in order using the supplied criteria and
the first writer that returns true is selected and returned.
getMessageBodyWriter in interface ProvidersgetMessageBodyWriter in class ResteasyProviderFactorytype - the class of object that is to be written.genericType - the type of object to be written. E.g. if the
message body is to be produced from a field, this will be
the declared type of the field as returned by
Field.getGenericType.annotations - an array of the annotations on the declaration of the
artifact that will be written. E.g. if the
message body is to be produced from a field, this will be
the annotations on that field returned by
Field.getDeclaredAnnotations.mediaType - the media type of the data that will be written.
public <T> T createEndpoint(Application applicationConfig,
java.lang.Class<T> endpointType)
throws java.lang.IllegalArgumentException,
java.lang.UnsupportedOperationException
ResteasyProviderFactory
createEndpoint in class ResteasyProviderFactoryapplicationConfig - the application configurationendpointType - the type of endpoint instance to be created.
java.lang.IllegalArgumentException - if application is null or the
requested endpoint type is not supported.
java.lang.UnsupportedOperationException - if the implementation
supports no endpoint types.public InterceptorRegistry getInterceptorRegistry()
getInterceptorRegistry in class ResteasyProviderFactory
public <T> ContextResolver<T> getContextResolver(java.lang.Class<T> contextType,
MediaType mediaType)
ProvidersmediaType with the value of each resolver's
Produces, ensuring the generic type of the context
resolver is assignable to the supplied value of contextType, and
eliminating those that do not match. If only one resolver matches the
criteria then it is returned. If more than one resolver matches then the
list of matching resolvers is ordered with those with the best
matching values of Produces (x/y > x/* > */*)
sorted first. A proxy is returned that delegates calls to
ContextResolver.getContext(java.lang.Class) to each matching context
resolver in order and returns the first non-null value it obtains or null
if all matching context resolvers return null.
getContextResolver in interface ProvidersgetContextResolver in class ResteasyProviderFactorycontextType - the class of context desiredmediaType - the media type of data for which a context is required.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||