Class PartialResponse
- java.lang.Object
-
- javax.ws.rs.core.Response
-
- org.jboss.resteasy.microprofile.client.PartialResponse
-
- All Implemented Interfaces:
Serializable,AutoCloseable
public class PartialResponse extends javax.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,javax.ws.rs.core.NewCookie>getCookies()DategetDate()ObjectgetEntity()javax.ws.rs.core.EntityTaggetEntityTag()StringgetHeaderString(String name)LocalegetLanguage()DategetLastModified()intgetLength()javax.ws.rs.core.LinkgetLink(String relation)javax.ws.rs.core.Link.BuildergetLinkBuilder(String relation)Set<javax.ws.rs.core.Link>getLinks()URIgetLocation()javax.ws.rs.core.MediaTypegetMediaType()javax.ws.rs.core.MultivaluedMap<String,Object>getMetadata()intgetStatus()javax.ws.rs.core.Response.StatusTypegetStatusInfo()javax.ws.rs.core.MultivaluedMap<String,String>getStringHeaders()booleanhasEntity()booleanhasLink(String relation)<T> TreadEntity(Class<T> entityType)<T> TreadEntity(Class<T> entityType, Annotation[] annotations)<T> TreadEntity(javax.ws.rs.core.GenericType<T> entityType)<T> TreadEntity(javax.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)static StringreadStringEntity(InputStream input)
-
-
-
Method Detail
-
getStatus
public int getStatus()
- Specified by:
getStatusin classjavax.ws.rs.core.Response
-
getStatusInfo
public javax.ws.rs.core.Response.StatusType getStatusInfo()
- Specified by:
getStatusInfoin classjavax.ws.rs.core.Response
-
getEntity
public Object getEntity()
- Specified by:
getEntityin classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> entityType)
- Specified by:
readEntityin classjavax.ws.rs.core.Response
-
readStringEntity
public static String readStringEntity(InputStream input)
-
readEntity
public <T> T readEntity(javax.ws.rs.core.GenericType<T> entityType)
- Specified by:
readEntityin classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> entityType, Annotation[] annotations)
- Specified by:
readEntityin classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(javax.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)- Specified by:
readEntityin classjavax.ws.rs.core.Response
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntityin classjavax.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity()
- Specified by:
bufferEntityin classjavax.ws.rs.core.Response
-
close
public void close()
- Specified by:
closein interfaceAutoCloseable- Specified by:
closein classjavax.ws.rs.core.Response
-
getMediaType
public javax.ws.rs.core.MediaType getMediaType()
- Specified by:
getMediaTypein classjavax.ws.rs.core.Response
-
getLanguage
public Locale getLanguage()
- Specified by:
getLanguagein classjavax.ws.rs.core.Response
-
getLength
public int getLength()
- Specified by:
getLengthin classjavax.ws.rs.core.Response
-
getAllowedMethods
public Set<String> getAllowedMethods()
- Specified by:
getAllowedMethodsin classjavax.ws.rs.core.Response
-
getCookies
public Map<String,javax.ws.rs.core.NewCookie> getCookies()
- Specified by:
getCookiesin classjavax.ws.rs.core.Response
-
getEntityTag
public javax.ws.rs.core.EntityTag getEntityTag()
- Specified by:
getEntityTagin classjavax.ws.rs.core.Response
-
getDate
public Date getDate()
- Specified by:
getDatein classjavax.ws.rs.core.Response
-
getLastModified
public Date getLastModified()
- Specified by:
getLastModifiedin classjavax.ws.rs.core.Response
-
getLocation
public URI getLocation()
- Specified by:
getLocationin classjavax.ws.rs.core.Response
-
getLinks
public Set<javax.ws.rs.core.Link> getLinks()
- Specified by:
getLinksin classjavax.ws.rs.core.Response
-
hasLink
public boolean hasLink(String relation)
- Specified by:
hasLinkin classjavax.ws.rs.core.Response
-
getLink
public javax.ws.rs.core.Link getLink(String relation)
- Specified by:
getLinkin classjavax.ws.rs.core.Response
-
getLinkBuilder
public javax.ws.rs.core.Link.Builder getLinkBuilder(String relation)
- Specified by:
getLinkBuilderin classjavax.ws.rs.core.Response
-
getMetadata
public javax.ws.rs.core.MultivaluedMap<String,Object> getMetadata()
- Specified by:
getMetadatain classjavax.ws.rs.core.Response
-
getStringHeaders
public javax.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
- Specified by:
getStringHeadersin classjavax.ws.rs.core.Response
-
-