Class AutoCloseableResponse
- java.lang.Object
-
- jakarta.ws.rs.core.Response
-
- dev.aherscu.qa.testing.utils.rest.AutoCloseableResponse
-
- All Implemented Interfaces:
AutoCloseable
public class AutoCloseableResponse extends jakarta.ws.rs.core.Response
Wraps a givenResponse
providing anAutoCloseable
interface atop.- Author:
- aherscu
-
-
Constructor Summary
Constructors Constructor Description AutoCloseableResponse(jakarta.ws.rs.core.Response response)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
bufferEntity()
void
close()
Set<String>
getAllowedMethods()
Map<String,jakarta.ws.rs.core.NewCookie>
getCookies()
Date
getDate()
Object
getEntity()
jakarta.ws.rs.core.EntityTag
getEntityTag()
jakarta.ws.rs.core.MultivaluedMap<String,Object>
getHeaders()
String
getHeaderString(String arg0)
Locale
getLanguage()
Date
getLastModified()
int
getLength()
jakarta.ws.rs.core.Link
getLink(String arg0)
jakarta.ws.rs.core.Link.Builder
getLinkBuilder(String arg0)
Set<jakarta.ws.rs.core.Link>
getLinks()
URI
getLocation()
jakarta.ws.rs.core.MediaType
getMediaType()
jakarta.ws.rs.core.MultivaluedMap<String,Object>
getMetadata()
int
getStatus()
jakarta.ws.rs.core.Response.StatusType
getStatusInfo()
jakarta.ws.rs.core.MultivaluedMap<String,String>
getStringHeaders()
boolean
hasEntity()
boolean
hasLink(String arg0)
boolean
isClosed()
<T> T
readEntity(jakarta.ws.rs.core.GenericType<T> arg0)
<T> T
readEntity(jakarta.ws.rs.core.GenericType<T> arg0, Annotation[] arg1)
<T> T
readEntity(Class<T> arg0)
<T> T
readEntity(Class<T> arg0, Annotation[] arg1)
-
-
-
Method Detail
-
close
public void close()
- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in classjakarta.ws.rs.core.Response
-
getStatus
public int getStatus()
- Specified by:
getStatus
in classjakarta.ws.rs.core.Response
-
getStatusInfo
public jakarta.ws.rs.core.Response.StatusType getStatusInfo()
- Specified by:
getStatusInfo
in classjakarta.ws.rs.core.Response
-
getEntity
public Object getEntity()
- Specified by:
getEntity
in classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> arg0)
- Specified by:
readEntity
in classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> arg0)
- Specified by:
readEntity
in classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(Class<T> arg0, Annotation[] arg1)
- Specified by:
readEntity
in classjakarta.ws.rs.core.Response
-
readEntity
public <T> T readEntity(jakarta.ws.rs.core.GenericType<T> arg0, Annotation[] arg1)
- Specified by:
readEntity
in classjakarta.ws.rs.core.Response
-
hasEntity
public boolean hasEntity()
- Specified by:
hasEntity
in classjakarta.ws.rs.core.Response
-
bufferEntity
public boolean bufferEntity()
- Specified by:
bufferEntity
in classjakarta.ws.rs.core.Response
-
getMediaType
public jakarta.ws.rs.core.MediaType getMediaType()
- Specified by:
getMediaType
in classjakarta.ws.rs.core.Response
-
getLanguage
public Locale getLanguage()
- Specified by:
getLanguage
in classjakarta.ws.rs.core.Response
-
getLength
public int getLength()
- Specified by:
getLength
in classjakarta.ws.rs.core.Response
-
getAllowedMethods
public Set<String> getAllowedMethods()
- Specified by:
getAllowedMethods
in classjakarta.ws.rs.core.Response
-
getCookies
public Map<String,jakarta.ws.rs.core.NewCookie> getCookies()
- Specified by:
getCookies
in classjakarta.ws.rs.core.Response
-
getEntityTag
public jakarta.ws.rs.core.EntityTag getEntityTag()
- Specified by:
getEntityTag
in classjakarta.ws.rs.core.Response
-
getDate
public Date getDate()
- Specified by:
getDate
in classjakarta.ws.rs.core.Response
-
getLastModified
public Date getLastModified()
- Specified by:
getLastModified
in classjakarta.ws.rs.core.Response
-
getLocation
public URI getLocation()
- Specified by:
getLocation
in classjakarta.ws.rs.core.Response
-
getLinks
public Set<jakarta.ws.rs.core.Link> getLinks()
- Specified by:
getLinks
in classjakarta.ws.rs.core.Response
-
hasLink
public boolean hasLink(String arg0)
- Specified by:
hasLink
in classjakarta.ws.rs.core.Response
-
getLink
public jakarta.ws.rs.core.Link getLink(String arg0)
- Specified by:
getLink
in classjakarta.ws.rs.core.Response
-
getLinkBuilder
public jakarta.ws.rs.core.Link.Builder getLinkBuilder(String arg0)
- Specified by:
getLinkBuilder
in classjakarta.ws.rs.core.Response
-
getMetadata
public jakarta.ws.rs.core.MultivaluedMap<String,Object> getMetadata()
- Specified by:
getMetadata
in classjakarta.ws.rs.core.Response
-
getHeaders
public jakarta.ws.rs.core.MultivaluedMap<String,Object> getHeaders()
- Overrides:
getHeaders
in classjakarta.ws.rs.core.Response
-
getStringHeaders
public jakarta.ws.rs.core.MultivaluedMap<String,String> getStringHeaders()
- Specified by:
getStringHeaders
in classjakarta.ws.rs.core.Response
-
getHeaderString
public String getHeaderString(String arg0)
- Specified by:
getHeaderString
in classjakarta.ws.rs.core.Response
-
isClosed
public boolean isClosed()
- Overrides:
isClosed
in classjakarta.ws.rs.core.Response
-
-