Class OutboundJaxrsResponse
- java.lang.Object
-
- jakarta.ws.rs.core.Response
-
- org.glassfish.jersey.message.internal.OutboundJaxrsResponse
-
- All Implemented Interfaces:
AutoCloseable
public class OutboundJaxrsResponse extends jakarta.ws.rs.core.ResponseAn outbound JAX-RS response message. The implementation delegates method calls to anunderlying outbound message context.- Author:
- Marek Potociar
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOutboundJaxrsResponse.BuilderOutbound JAX-RSResponse.ResponseBuilderimplementation.
-
Constructor Summary
Constructors Constructor Description OutboundJaxrsResponse(jakarta.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 Deprecated Methods Modifier and Type Method Description booleanbufferEntity()voidclose()static OutboundJaxrsResponsefrom(jakarta.ws.rs.core.Response response)Deprecated.static OutboundJaxrsResponsefrom(jakarta.ws.rs.core.Response response, jakarta.ws.rs.core.Configuration configuration)Get an OutboundJaxrsResponse instance for a given JAX-RS response.Set<String>getAllowedMethods()OutboundMessageContextgetContext()Get the underlying outbound message context.Map<String,jakarta.ws.rs.core.NewCookie>getCookies()DategetDate()ObjectgetEntity()jakarta.ws.rs.core.EntityTaggetEntityTag()StringgetHeaderString(String name)LocalegetLanguage()DategetLastModified()intgetLength()jakarta.ws.rs.core.LinkgetLink(String relation)jakarta.ws.rs.core.Link.BuildergetLinkBuilder(String relation)Set<jakarta.ws.rs.core.Link>getLinks()URIgetLocation()jakarta.ws.rs.core.MediaTypegetMediaType()jakarta.ws.rs.core.MultivaluedMap<String,Object>getMetadata()intgetStatus()jakarta.ws.rs.core.Response.StatusTypegetStatusInfo()jakarta.ws.rs.core.MultivaluedMap<String,String>getStringHeaders()booleanhasEntity()booleanhasLink(String relation)<T> TreadEntity(jakarta.ws.rs.core.GenericType<T> entityType)<T> TreadEntity(jakarta.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)<T> TreadEntity(Class<T> type)<T> TreadEntity(Class<T> type, Annotation[] annotations)StringtoString()
-
-
-
Constructor Detail
-
OutboundJaxrsResponse
public OutboundJaxrsResponse(jakarta.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(jakarta.ws.rs.core.Response response, jakarta.ws.rs.core.Configuration configuration)
Get an OutboundJaxrsResponse instance for a given JAX-RS response.- Parameters:
response- response instance to from.configuration- the related client/server sideConfiguration. Can benull.- Returns:
- corresponding
OutboundJaxrsResponseinstance.
-
from
@Deprecated public static OutboundJaxrsResponse from(jakarta.ws.rs.core.Response response)
Deprecated.Get an OutboundJaxrsResponse instance for a given JAX-RS response.- Parameters:
response- response instance to from.- Returns:
- corresponding
OutboundJaxrsResponseinstance. - See Also:
from(Response, Configuration)
-
getContext
public OutboundMessageContext getContext()
Get the underlying outbound message context.- Returns:
- underlying outbound message context.
-
getStatus
public int getStatus()
- Specified by:
getStatusin classjakarta.ws.rs.core.Response
-
getStatusInfo
public jakarta.ws.rs.core.Response.StatusType getStatusInfo()
- Specified by:
getStatusInfoin classjakarta.ws.rs.core.Response
-
getEntity
public Object getEntity()
- Specified by:
getEntityin classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> type) throws jakarta.ws.rs.ProcessingException
- Specified by:
readEntityin classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType) throws jakarta.ws.rs.ProcessingException- Specified by:
readEntityin classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(Class<T> type, Annotation[] annotations) throws jakarta.ws.rs.ProcessingException
- Specified by:
readEntityin classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType, Annotation[] annotations) throws jakarta.ws.rs.ProcessingException- Specified by:
readEntityin classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntityin classjakarta.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity() throws jakarta.ws.rs.ProcessingException- Specified by:
bufferEntityin classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
close
public void close() throws jakarta.ws.rs.ProcessingException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein classjakarta.ws.rs.core.Response- Throws:
jakarta.ws.rs.ProcessingException
-
getStringHeaders
public jakarta.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
- Specified by:
getStringHeadersin classjakarta.ws.rs.core.Response
-
getHeaderString
public String getHeaderString(String name)
- Specified by:
getHeaderStringin classjakarta.ws.rs.core.Response
-
getMediaType
public jakarta.ws.rs.core.MediaType getMediaType()
- Specified by:
getMediaTypein classjakarta.ws.rs.core.Response
-
getLanguage
public Locale getLanguage()
- Specified by:
getLanguagein classjakarta.ws.rs.core.Response
-
getLength
public int getLength()
- Specified by:
getLengthin classjakarta.ws.rs.core.Response
-
getCookies
public Map<String,jakarta.ws.rs.core.NewCookie> getCookies()
- Specified by:
getCookiesin classjakarta.ws.rs.core.Response
-
getEntityTag
public jakarta.ws.rs.core.EntityTag getEntityTag()
- Specified by:
getEntityTagin classjakarta.ws.rs.core.Response
-
getDate
public Date getDate()
- Specified by:
getDatein classjakarta.ws.rs.core.Response
-
getLastModified
public Date getLastModified()
- Specified by:
getLastModifiedin classjakarta.ws.rs.core.Response
-
getAllowedMethods
public Set<String> getAllowedMethods()
- Specified by:
getAllowedMethodsin classjakarta.ws.rs.core.Response
-
getLocation
public URI getLocation()
- Specified by:
getLocationin classjakarta.ws.rs.core.Response
-
getLinks
public Set<jakarta.ws.rs.core.Link> getLinks()
- Specified by:
getLinksin classjakarta.ws.rs.core.Response
-
hasLink
public boolean hasLink(String relation)
- Specified by:
hasLinkin classjakarta.ws.rs.core.Response
-
getLink
public jakarta.ws.rs.core.Link getLink(String relation)
- Specified by:
getLinkin classjakarta.ws.rs.core.Response
-
getLinkBuilder
public jakarta.ws.rs.core.Link.Builder getLinkBuilder(String relation)
- Specified by:
getLinkBuilderin classjakarta.ws.rs.core.Response
-
getMetadata
public jakarta.ws.rs.core.MultivaluedMap<String,Object> getMetadata()
- Specified by:
getMetadatain classjakarta.ws.rs.core.Response
-
-