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 boolean
bufferEntity()
void
close()
Set<String>
getAllowedMethods()
Map<String,javax.ws.rs.core.NewCookie>
getCookies()
Date
getDate()
Object
getEntity()
javax.ws.rs.core.EntityTag
getEntityTag()
String
getHeaderString(String name)
Locale
getLanguage()
Date
getLastModified()
int
getLength()
javax.ws.rs.core.Link
getLink(String relation)
javax.ws.rs.core.Link.Builder
getLinkBuilder(String relation)
Set<javax.ws.rs.core.Link>
getLinks()
URI
getLocation()
javax.ws.rs.core.MediaType
getMediaType()
javax.ws.rs.core.MultivaluedMap<String,Object>
getMetadata()
int
getStatus()
javax.ws.rs.core.Response.StatusType
getStatusInfo()
javax.ws.rs.core.MultivaluedMap<String,String>
getStringHeaders()
boolean
hasEntity()
boolean
hasLink(String relation)
<T> T
readEntity(Class<T> entityType)
<T> T
readEntity(Class<T> entityType, Annotation[] annotations)
<T> T
readEntity(javax.ws.rs.core.GenericType<T> entityType)
<T> T
readEntity(javax.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)
static String
readStringEntity(InputStream input)
-
-
-
Method Detail
-
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 Object getEntity()
- Specified by:
getEntity
in classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> entityType)
- Specified by:
readEntity
in 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:
readEntity
in classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> entityType, Annotation[] annotations)
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
-
readEntity
public <T> T readEntity(javax.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)
- Specified by:
readEntity
in classjavax.ws.rs.core.Response
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntity
in classjavax.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity()
- Specified by:
bufferEntity
in classjavax.ws.rs.core.Response
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
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 Locale getLanguage()
- Specified by:
getLanguage
in classjavax.ws.rs.core.Response
-
getLength
public int getLength()
- Specified by:
getLength
in classjavax.ws.rs.core.Response
-
getAllowedMethods
public Set<String> getAllowedMethods()
- Specified by:
getAllowedMethods
in classjavax.ws.rs.core.Response
-
getCookies
public Map<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 Date getDate()
- Specified by:
getDate
in classjavax.ws.rs.core.Response
-
getLastModified
public Date getLastModified()
- Specified by:
getLastModified
in classjavax.ws.rs.core.Response
-
getLocation
public URI getLocation()
- Specified by:
getLocation
in classjavax.ws.rs.core.Response
-
getLinks
public Set<javax.ws.rs.core.Link> getLinks()
- Specified by:
getLinks
in classjavax.ws.rs.core.Response
-
hasLink
public boolean hasLink(String relation)
- Specified by:
hasLink
in classjavax.ws.rs.core.Response
-
getLink
public javax.ws.rs.core.Link getLink(String relation)
- Specified by:
getLink
in classjavax.ws.rs.core.Response
-
getLinkBuilder
public javax.ws.rs.core.Link.Builder getLinkBuilder(String relation)
- Specified by:
getLinkBuilder
in classjavax.ws.rs.core.Response
-
getMetadata
public javax.ws.rs.core.MultivaluedMap<String,Object> getMetadata()
- Specified by:
getMetadata
in classjavax.ws.rs.core.Response
-
getStringHeaders
public javax.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
- Specified by:
getStringHeaders
in classjavax.ws.rs.core.Response
-
-