| Package | Description |
|---|---|
| javax.ws.rs.core |
Low-level interfaces and annotations used to create RESTful service
resources.
|
| org.glassfish.jersey.message.internal |
Common Jersey internal messaging classes.
|
| Modifier and Type | Method and Description |
|---|---|
abstract boolean |
Response.bufferEntity()
Buffer the message entity data.
|
abstract void |
Response.close()
Close the underlying message entity input stream (if available and open)
as well as releases any other resources associated with the response
(e.g.
|
abstract <T> T |
Response.readEntity(Class<T> entityType)
Read the message entity input stream 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> entityType,
Annotation[] annotations)
Read the message entity input stream 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 input stream 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,
Annotation[] annotations)
Read the message entity input stream as an instance of specified Java type
using a
MessageBodyReader that supports mapping the
message entity stream onto the requested type. |
| Modifier and Type | Class and Description |
|---|---|
class |
MessageBodyProcessingException
Jersey exception signaling that error occurred during reading or writing message body (entity).
|
class |
MessageBodyProviderNotFoundException
Jersey processing exception signaling that no appropriate MessageBodyReader or MessageBodyWriter was found.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
OutboundJaxrsResponse.bufferEntity() |
boolean |
InboundMessageContext.bufferEntity()
Buffer the entity stream (if not empty).
|
void |
OutboundJaxrsResponse.close() |
<T> T |
OutboundJaxrsResponse.readEntity(Class<T> type) |
<T> T |
OutboundJaxrsResponse.readEntity(Class<T> type,
Annotation[] annotations) |
<T> T |
OutboundJaxrsResponse.readEntity(GenericType<T> entityType) |
<T> T |
OutboundJaxrsResponse.readEntity(GenericType<T> entityType,
Annotation[] annotations) |
Copyright © 2007-2012 Oracle Corporation. All Rights Reserved. Use is subject to license terms.