Uses of Class
javax.ws.rs.core.MessageProcessingException

Packages that use MessageProcessingException
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
 

Uses of MessageProcessingException in javax.ws.rs.core
 

Methods in javax.ws.rs.core that throw MessageProcessingException
abstract  void Response.bufferEntity()
          Buffer the message entity.
 void Request.bufferEntity()
          Buffer the message entity.
abstract  void Response.close()
          Close the message entity input stream (if available and open).
 void Request.close()
          Close the message entity input stream (if available and open).
abstract  Object Response.getEntity()
          Get the message entity Java instance.
abstract
<T> T
Response.readEntity(Class<T> type)
          Read the message entity as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
<T> T
Request.readEntity(Class<T> type)
          Read the message entity as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
abstract
<T> T
Response.readEntity(Class<T> type, Annotation[] annotations)
          Read the message entity as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
<T> T
Request.readEntity(Class<T> type, Annotation[] annotations)
          Read the message entity as an instance of specified Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
abstract
<T> T
Response.readEntity(GenericType<T> entityType)
          Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
<T> T
Request.readEntity(GenericType<T> entityType)
          Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
abstract
<T> T
Response.readEntity(GenericType<T> entityType, Annotation[] annotations)
          Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
<T> T
Request.readEntity(GenericType<T> entityType, Annotation[] annotations)
          Read the message entity as an instance of specified (generic) Java type using a MessageBodyReader that supports mapping the message entity stream onto the requested type.
 



Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.