Class ResponseImpl

java.lang.Object
jakarta.ws.rs.core.Response
org.jboss.resteasy.reactive.common.jaxrs.ResponseImpl
All Implemented Interfaces:
AutoCloseable

public class ResponseImpl extends jakarta.ws.rs.core.Response
This is the Response class for user-created responses. The client response object has more deserialising powers in @{link io.quarkus.rest.server.runtime.client.QuarkusRestClientResponse.
  • Field Details

    • entity

      protected Object entity
    • consumed

      protected boolean consumed
    • closed

      protected boolean closed
    • buffered

      protected boolean buffered
  • Constructor Details

    • ResponseImpl

      public ResponseImpl()
  • Method Details

    • getStatus

      public int getStatus()
      Specified by:
      getStatus in class jakarta.ws.rs.core.Response
    • setStatus

      public void setStatus(int status)
      Internal: this is just cheaper than duplicating the response just to change the status
    • getStatusInfo

      public jakarta.ws.rs.core.Response.StatusType getStatusInfo()
      Specified by:
      getStatusInfo in class jakarta.ws.rs.core.Response
    • setStatusInfo

      public void setStatusInfo(jakarta.ws.rs.core.Response.StatusType statusType)
      Internal: this is just cheaper than duplicating the response just to change the status
    • getEntity

      public Object getEntity()
      Specified by:
      getEntity in class jakarta.ws.rs.core.Response
    • setEntity

      protected void setEntity(Object entity)
    • getEntityStream

      public InputStream getEntityStream()
    • setEntityStream

      public void setEntityStream(InputStream entityStream)
    • readEntity

      protected <T> T readEntity(Class<T> entityType, Type genericType, Annotation[] annotations)
    • readEntity

      public <T> T readEntity(Class<T> entityType)
      Specified by:
      readEntity in class jakarta.ws.rs.core.Response
    • readEntity

      public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType)
      Specified by:
      readEntity in class jakarta.ws.rs.core.Response
    • readEntity

      public <T> T readEntity(Class<T> entityType, Annotation[] annotations)
      Specified by:
      readEntity in class jakarta.ws.rs.core.Response
    • readEntity

      public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> entityType, Annotation[] annotations)
      Specified by:
      readEntity in class jakarta.ws.rs.core.Response
    • hasEntity

      public boolean hasEntity()
      Specified by:
      hasEntity in class jakarta.ws.rs.core.Response
    • bufferEntity

      public boolean bufferEntity()
      Specified by:
      bufferEntity in class jakarta.ws.rs.core.Response
    • checkClosed

      protected void checkClosed()
    • close

      public void close()
      Specified by:
      close in interface AutoCloseable
      Specified by:
      close in class jakarta.ws.rs.core.Response
    • getMediaType

      public jakarta.ws.rs.core.MediaType getMediaType()
      Specified by:
      getMediaType in class jakarta.ws.rs.core.Response
    • getLanguage

      public Locale getLanguage()
      Specified by:
      getLanguage in class jakarta.ws.rs.core.Response
    • getLength

      public int getLength()
      Specified by:
      getLength in class jakarta.ws.rs.core.Response
    • getAllowedMethods

      public Set<String> getAllowedMethods()
      Specified by:
      getAllowedMethods in class jakarta.ws.rs.core.Response
    • getCookies

      public Map<String,jakarta.ws.rs.core.NewCookie> getCookies()
      Specified by:
      getCookies in class jakarta.ws.rs.core.Response
    • getEntityTag

      public jakarta.ws.rs.core.EntityTag getEntityTag()
      Specified by:
      getEntityTag in class jakarta.ws.rs.core.Response
    • getDate

      public Date getDate()
      Specified by:
      getDate in class jakarta.ws.rs.core.Response
    • getLastModified

      public Date getLastModified()
      Specified by:
      getLastModified in class jakarta.ws.rs.core.Response
    • getLocation

      public URI getLocation()
      Specified by:
      getLocation in class jakarta.ws.rs.core.Response
    • getLinks

      public Set<jakarta.ws.rs.core.Link> getLinks()
      Specified by:
      getLinks in class jakarta.ws.rs.core.Response
    • hasLink

      public boolean hasLink(String relation)
      Specified by:
      hasLink in class jakarta.ws.rs.core.Response
    • getLink

      public jakarta.ws.rs.core.Link getLink(String relation)
      Specified by:
      getLink in class jakarta.ws.rs.core.Response
    • getLinkBuilder

      public jakarta.ws.rs.core.Link.Builder getLinkBuilder(String relation)
      Specified by:
      getLinkBuilder in class jakarta.ws.rs.core.Response
    • getMetadata

      public jakarta.ws.rs.core.MultivaluedMap<String,Object> getMetadata()
      Specified by:
      getMetadata in class jakarta.ws.rs.core.Response
    • getStringHeaders

      public jakarta.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
      Specified by:
      getStringHeaders in class jakarta.ws.rs.core.Response
    • populateStringHeaders

      public void populateStringHeaders(String headerName, List<Object> values)
    • getHeaderString

      public String getHeaderString(String name)
      Specified by:
      getHeaderString in class jakarta.ws.rs.core.Response
    • getEntityAnnotations

      public Annotation[] getEntityAnnotations()