Interface MessageBodyReaderContext
-
- All Known Implementing Classes:
ReaderInterceptorRegistry.MessageBodyReaderContextFacade
@Deprecated public interface MessageBodyReaderContextDeprecated.The Resteasy interceptor facility introduced in release 2.x is replaced by the JAX-RS 2.0 compliant interceptor facility in release 3.0.x.- Version:
- $Revision: 1 $
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description java.lang.annotation.Annotation[]getAnnotations()Deprecated.java.lang.ObjectgetAttribute(java.lang.String attribute)Deprecated.Allows you to pass values back and forth between interceptors On the server side, this is the HttpRequest attributes, on the client side, this is the ClientRequest/ClientResponse attributes.java.lang.reflect.TypegetGenericType()Deprecated.javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String>getHeaders()Deprecated.java.io.InputStreamgetInputStream()Deprecated.javax.ws.rs.core.MediaTypegetMediaType()Deprecated.java.lang.ClassgetType()Deprecated.java.lang.Objectproceed()Deprecated.voidremoveAttribute(java.lang.String name)Deprecated.voidsetAnnotations(java.lang.annotation.Annotation[] annotations)Deprecated.voidsetAttribute(java.lang.String name, java.lang.Object value)Deprecated.voidsetGenericType(java.lang.reflect.Type genericType)Deprecated.voidsetInputStream(java.io.InputStream is)Deprecated.voidsetMediaType(javax.ws.rs.core.MediaType mediaType)Deprecated.voidsetType(java.lang.Class type)Deprecated.
-
-
-
Method Detail
-
getType
java.lang.Class getType()
Deprecated.
-
setType
void setType(java.lang.Class type)
Deprecated.
-
getGenericType
java.lang.reflect.Type getGenericType()
Deprecated.
-
setGenericType
void setGenericType(java.lang.reflect.Type genericType)
Deprecated.
-
getAnnotations
java.lang.annotation.Annotation[] getAnnotations()
Deprecated.
-
setAnnotations
void setAnnotations(java.lang.annotation.Annotation[] annotations)
Deprecated.
-
getMediaType
javax.ws.rs.core.MediaType getMediaType()
Deprecated.
-
setMediaType
void setMediaType(javax.ws.rs.core.MediaType mediaType)
Deprecated.
-
getHeaders
javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> getHeaders()
Deprecated.
-
getInputStream
java.io.InputStream getInputStream()
Deprecated.
-
setInputStream
void setInputStream(java.io.InputStream is)
Deprecated.
-
getAttribute
java.lang.Object getAttribute(java.lang.String attribute)
Deprecated.Allows you to pass values back and forth between interceptors On the server side, this is the HttpRequest attributes, on the client side, this is the ClientRequest/ClientResponse attributes.- Returns:
-
setAttribute
void setAttribute(java.lang.String name, java.lang.Object value)Deprecated.
-
removeAttribute
void removeAttribute(java.lang.String name)
Deprecated.
-
proceed
java.lang.Object proceed() throws java.io.IOException, javax.ws.rs.WebApplicationExceptionDeprecated.- Throws:
java.io.IOExceptionjavax.ws.rs.WebApplicationException
-
-