Class OutboundJaxrsResponse
- java.lang.Object
-
- javax.ws.rs.core.Response
-
- org.glassfish.jersey.message.internal.OutboundJaxrsResponse
-
- All Implemented Interfaces:
java.lang.AutoCloseable
public class OutboundJaxrsResponse extends javax.ws.rs.core.Response
An outbound JAX-RS response message. The implementation delegates method calls to anunderlying outbound message context
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
OutboundJaxrsResponse.Builder
Outbound JAX-RSResponse.ResponseBuilder
implementation.
-
Field Summary
Fields Modifier and Type Field Description private boolean
buffered
private boolean
closed
private OutboundMessageContext
context
private javax.ws.rs.core.Response.StatusType
status
-
Constructor Summary
Constructors Constructor Description OutboundJaxrsResponse(javax.ws.rs.core.Response.StatusType status, OutboundMessageContext context)
Create new outbound JAX-RS response message instance.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
bufferEntity()
void
close()
static OutboundJaxrsResponse
from(javax.ws.rs.core.Response response)
Get an OutboundJaxrsResponse instance for a given JAX-RS response.java.util.Set<java.lang.String>
getAllowedMethods()
OutboundMessageContext
getContext()
Get the underlying outbound message context.java.util.Map<java.lang.String,javax.ws.rs.core.NewCookie>
getCookies()
java.util.Date
getDate()
java.lang.Object
getEntity()
javax.ws.rs.core.EntityTag
getEntityTag()
java.lang.String
getHeaderString(java.lang.String name)
java.util.Locale
getLanguage()
java.util.Date
getLastModified()
int
getLength()
javax.ws.rs.core.Link
getLink(java.lang.String relation)
javax.ws.rs.core.Link.Builder
getLinkBuilder(java.lang.String relation)
java.util.Set<javax.ws.rs.core.Link>
getLinks()
java.net.URI
getLocation()
javax.ws.rs.core.MediaType
getMediaType()
javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object>
getMetadata()
int
getStatus()
javax.ws.rs.core.Response.StatusType
getStatusInfo()
javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String>
getStringHeaders()
boolean
hasEntity()
boolean
hasLink(java.lang.String relation)
<T> T
readEntity(java.lang.Class<T> type)
<T> T
readEntity(java.lang.Class<T> type, java.lang.annotation.Annotation[] annotations)
<T> T
readEntity(javax.ws.rs.core.GenericType<T> entityType)
<T> T
readEntity(javax.ws.rs.core.GenericType<T> entityType, java.lang.annotation.Annotation[] annotations)
java.lang.String
toString()
-
-
-
Field Detail
-
context
private final OutboundMessageContext context
-
status
private final javax.ws.rs.core.Response.StatusType status
-
closed
private boolean closed
-
buffered
private boolean buffered
-
-
Constructor Detail
-
OutboundJaxrsResponse
public OutboundJaxrsResponse(javax.ws.rs.core.Response.StatusType status, OutboundMessageContext context)
Create new outbound JAX-RS response message instance.- Parameters:
status
- response status.context
- underlying outbound message context.
-
-
Method Detail
-
from
public static OutboundJaxrsResponse from(javax.ws.rs.core.Response response)
Get an OutboundJaxrsResponse instance for a given JAX-RS response.- Parameters:
response
- response instance to from.- Returns:
- corresponding
OutboundJaxrsResponse
instance.
-
getContext
public OutboundMessageContext getContext()
Get the underlying outbound message context.- Returns:
- underlying outbound message context.
-
getStatus
public int getStatus()
- Specified by:
getStatus
in classjavax.ws.rs.core.Response
-
getStatusInfo
public javax.ws.rs.core.Response.StatusType getStatusInfo()
- Specified by:
getStatusInfo
in classjavax.ws.rs.core.Response
-
getEntity
public java.lang.Object getEntity()
- Specified by:
getEntity
in classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(java.lang.Class<T> type) throws javax.ws.rs.ProcessingException
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(javax.ws.rs.core.GenericType<T> entityType) throws javax.ws.rs.ProcessingException
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(java.lang.Class<T> type, java.lang.annotation.Annotation[] annotations) throws javax.ws.rs.ProcessingException
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(javax.ws.rs.core.GenericType<T> entityType, java.lang.annotation.Annotation[] annotations) throws javax.ws.rs.ProcessingException
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntity
in classjavax.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity() throws javax.ws.rs.ProcessingException
- Specified by:
bufferEntity
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
close
public void close() throws javax.ws.rs.ProcessingException
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Specified by:
close
in classjavax.ws.rs.core.Response
- Throws:
javax.ws.rs.ProcessingException
-
getStringHeaders
public javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.String> getStringHeaders()
- Specified by:
getStringHeaders
in classjavax.ws.rs.core.Response
-
getHeaderString
public java.lang.String getHeaderString(java.lang.String name)
- Specified by:
getHeaderString
in classjavax.ws.rs.core.Response
-
getMediaType
public javax.ws.rs.core.MediaType getMediaType()
- Specified by:
getMediaType
in classjavax.ws.rs.core.Response
-
getLanguage
public java.util.Locale getLanguage()
- Specified by:
getLanguage
in classjavax.ws.rs.core.Response
-
getLength
public int getLength()
- Specified by:
getLength
in classjavax.ws.rs.core.Response
-
getCookies
public java.util.Map<java.lang.String,javax.ws.rs.core.NewCookie> getCookies()
- Specified by:
getCookies
in classjavax.ws.rs.core.Response
-
getEntityTag
public javax.ws.rs.core.EntityTag getEntityTag()
- Specified by:
getEntityTag
in classjavax.ws.rs.core.Response
-
getDate
public java.util.Date getDate()
- Specified by:
getDate
in classjavax.ws.rs.core.Response
-
getLastModified
public java.util.Date getLastModified()
- Specified by:
getLastModified
in classjavax.ws.rs.core.Response
-
getAllowedMethods
public java.util.Set<java.lang.String> getAllowedMethods()
- Specified by:
getAllowedMethods
in classjavax.ws.rs.core.Response
-
getLocation
public java.net.URI getLocation()
- Specified by:
getLocation
in classjavax.ws.rs.core.Response
-
getLinks
public java.util.Set<javax.ws.rs.core.Link> getLinks()
- Specified by:
getLinks
in classjavax.ws.rs.core.Response
-
hasLink
public boolean hasLink(java.lang.String relation)
- Specified by:
hasLink
in classjavax.ws.rs.core.Response
-
getLink
public javax.ws.rs.core.Link getLink(java.lang.String relation)
- Specified by:
getLink
in classjavax.ws.rs.core.Response
-
getLinkBuilder
public javax.ws.rs.core.Link.Builder getLinkBuilder(java.lang.String relation)
- Specified by:
getLinkBuilder
in classjavax.ws.rs.core.Response
-
getMetadata
public javax.ws.rs.core.MultivaluedMap<java.lang.String,java.lang.Object> getMetadata()
- Specified by:
getMetadata
in classjavax.ws.rs.core.Response
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-