Interface MessageBodyReaderContext

All Known Implementing Classes:
ReaderInterceptorRegistry.MessageBodyReaderContextFacade

@Deprecated public interface MessageBodyReaderContext
Deprecated.
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 Details

    • getType

      Class getType()
      Deprecated.
    • setType

      void setType(Class type)
      Deprecated.
    • getGenericType

      Type getGenericType()
      Deprecated.
    • setGenericType

      void setGenericType(Type genericType)
      Deprecated.
    • getAnnotations

      Annotation[] getAnnotations()
      Deprecated.
    • setAnnotations

      void setAnnotations(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<String,String> getHeaders()
      Deprecated.
    • getInputStream

      InputStream getInputStream()
      Deprecated.
    • setInputStream

      void setInputStream(InputStream is)
      Deprecated.
    • getAttribute

      Object getAttribute(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(String name, Object value)
      Deprecated.
    • removeAttribute

      void removeAttribute(String name)
      Deprecated.
    • proceed

      Object proceed() throws IOException, javax.ws.rs.WebApplicationException
      Deprecated.
      Throws:
      IOException
      javax.ws.rs.WebApplicationException