-
- All Known Subinterfaces:
- ReaderInterceptorContext, WriterInterceptorContext
public interface InterceptorContext
Context shared by message body interceptors that can be used to wrap calls toMessageBodyReader.readFrom(java.lang.Class<T>, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.String>, java.io.InputStream)
andMessageBodyWriter.writeTo(T, java.lang.Class<?>, java.lang.reflect.Type, java.lang.annotation.Annotation[], javax.ws.rs.core.MediaType, javax.ws.rs.core.MultivaluedMap<java.lang.String, java.lang.Object>, java.io.OutputStream)
. The getters and setters in this context class correspond to the parameters in the aforementioned methods.- Since:
- 2.0
- Author:
- Santiago Pericas-Geertsen, Bill Burke
- See Also:
ReaderInterceptor
,WriterInterceptor
,ReaderInterceptorContext
,WriterInterceptorContext
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description Annotation[]
getAnnotations()
Get an array of the annotations formally declared on the artifact that initiated the intercepted entity provider invocation.Type
getGenericType()
Get the type of the object to be produced or written.MediaType
getMediaType()
Get media type of HTTP entity.Object
getProperty(String name)
Returns the property with the given name registered in the current request/response exchange context, ornull
if there is no property by that name.Collection<String>
getPropertyNames()
Returns an immutablecollection
containing the property names available within the context of the current request/response exchange context.Class<?>
getType()
Get Java type supported by corresponding message body provider.void
removeProperty(String name)
Removes a property with the given name from the current request/response exchange context.void
setAnnotations(Annotation[] annotations)
Update annotations on the formal declaration of the artifact that initiated the intercepted entity provider invocation.void
setGenericType(Type genericType)
Update type of the object to be produced or written.void
setMediaType(MediaType mediaType)
Update media type of HTTP entity.void
setProperty(String name, Object object)
Binds an object to a given property name in the current request/response exchange context.void
setType(Class<?> type)
Update Java type before calling message body provider.
-
-
-
Method Detail
-
getProperty
Object getProperty(String name)
Returns the property with the given name registered in the current request/response exchange context, ornull
if there is no property by that name.A property allows a JAX-RS filters and interceptors to exchange additional custom information not already provided by this interface.
A list of supported properties can be retrieved using
getPropertyNames()
. Custom property names should follow the same convention as package names.In a Servlet container, on the server side, the properties are backed by the
ServletRequest
and contain all the attributes available in theServletRequest
.- Parameters:
name
- aString
specifying the name of the property.- Returns:
- an
Object
containing the value of the property, ornull
if no property exists matching the given name. - See Also:
getPropertyNames()
-
getPropertyNames
Collection<String> getPropertyNames()
Returns an immutablecollection
containing the property names available within the context of the current request/response exchange context.Use the
getProperty(java.lang.String)
method with a property name to get the value of a property.In a Servlet container, the properties are synchronized with the
ServletRequest
and expose all the attributes available in theServletRequest
. Any modifications of the properties are also reflected in the set of properties of the associatedServletRequest
.- Returns:
- an immutable
collection
of property names. - See Also:
getProperty(java.lang.String)
-
setProperty
void setProperty(String name, Object object)
Binds an object to a given property name in the current request/response exchange context. If the name specified is already used for a property, this method will replace the value of the property with the new value.A property allows a JAX-RS filters and interceptors to exchange additional custom information not already provided by this interface.
A list of supported properties can be retrieved using
getPropertyNames()
. Custom property names should follow the same convention as package names.If a
null
value is passed, the effect is the same as calling theremoveProperty(String)
method.In a Servlet container, on the server side, the properties are backed by the
ServletRequest
and contain all the attributes available in theServletRequest
.- Parameters:
name
- aString
specifying the name of the property.object
- anObject
representing the property to be bound.
-
removeProperty
void removeProperty(String name)
Removes a property with the given name from the current request/response exchange context. After removal, subsequent calls togetProperty(java.lang.String)
to retrieve the property value will returnnull
.In a Servlet container, on the server side, the properties are backed by the
ServletRequest
and contain all the attributes available in theServletRequest
.- Parameters:
name
- aString
specifying the name of the property to be removed.
-
getAnnotations
Annotation[] getAnnotations()
Get an array of the annotations formally declared on the artifact that initiated the intercepted entity provider invocation. E.g. if the message body is to be converted into a method parameter, this will be the annotations on that parameter returned byMethod.getParameterAnnotations()
; if the server-side response entity instance is to be converted into an output stream, this will be the annotations on the matched resource method returned byMethod.getAnnotations()
. This method may return an empty array in case the interceptor is not invoked in a context of any particular resource method (e.g. as part of the client API), but will never returnnull
.- Returns:
- annotations declared on the artifact that initiated the intercepted entity provider invocation.
-
setAnnotations
void setAnnotations(Annotation[] annotations)
Update annotations on the formal declaration of the artifact that initiated the intercepted entity provider invocation. Calling this method has no effect in the client API.- Parameters:
annotations
- updated annotations declarataion of the artifact that initiated the intercepted entity provider invocation. Must not benull
.- Throws:
NullPointerException
- in case the input parameter isnull
.
-
getType
Class<?> getType()
Get Java type supported by corresponding message body provider.- Returns:
- java type supported by provider
-
setType
void setType(Class<?> type)
Update Java type before calling message body provider.- Parameters:
type
- java type for provider
-
getGenericType
Type getGenericType()
Get the type of the object to be produced or written.- Returns:
- type of object produced or written
-
setGenericType
void setGenericType(Type genericType)
Update type of the object to be produced or written.- Parameters:
genericType
- new type for object
-
getMediaType
MediaType getMediaType()
Get media type of HTTP entity.- Returns:
- media type of HTTP entity
-
setMediaType
void setMediaType(MediaType mediaType)
Update media type of HTTP entity.- Parameters:
mediaType
- new type for HTTP entity
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
21/08/2025 17:20:18 Cette version de la page est en cache (à la date du 21/08/2025 17:20:18) afin d'accélérer le traitement.Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la version plus récente de la page.
Document créé le 11/06/2005, dernière modification le 18/08/2025
Source du document imprimé : https://www.gaudry.be/java-api-javaee-rf-javax/ws/rs/ext/InterceptorContext.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.