Class PartialResponse
- java.lang.Object
-
- jakarta.ws.rs.core.Response
-
- org.jboss.resteasy.microprofile.client.PartialResponse
-
- All Implemented Interfaces:
Serializable,AutoCloseable
public class PartialResponse extends jakarta.ws.rs.core.Response implements Serializable
- See Also:
- Serialized Form
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanbufferEntity()voidclose()Set<String>getAllowedMethods()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> entityType)<T> TreadEntity(Class<T> entityType, Annotation[] annotations)static StringreadStringEntity(InputStream input)
-
-
-
Method Detail
-
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> entityType)
- Specified by:
readEntityin classjakarta.ws.rs.core.Response
-
readStringEntity
public static String readStringEntity(InputStream input)
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType)
- Specified by:
readEntityin classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> entityType, Annotation[] annotations)
- Specified by:
readEntityin classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)- Specified by:
readEntityin classjakarta.ws.rs.core.Response
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntityin classjakarta.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity()
- Specified by:
bufferEntityin classjakarta.ws.rs.core.Response
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein 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
-
getAllowedMethods
public Set<String> getAllowedMethods()
- Specified by:
getAllowedMethodsin 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
-
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
-
getStringHeaders
public jakarta.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
- Specified by:
getStringHeadersin classjakarta.ws.rs.core.Response
-
-