All Methods Static Methods Instance Methods Abstract Methods Concrete Methods
| Modifier and Type |
Method and Description |
static Response.ResponseBuilder |
accepted() |
static Response.ResponseBuilder |
accepted(Object entity) |
abstract boolean |
bufferEntity() |
abstract void |
close() |
static Response.ResponseBuilder |
created(URI location) |
static Response.ResponseBuilder |
fromResponse(Response response) |
abstract Set<String> |
getAllowedMethods() |
abstract Map<String,NewCookie> |
getCookies() |
abstract Date |
getDate() |
abstract Object |
getEntity() |
abstract EntityTag |
getEntityTag() |
MultivaluedMap<String,Object> |
getHeaders() |
abstract String |
getHeaderString(String name) |
abstract Locale |
getLanguage() |
abstract Date |
getLastModified() |
abstract int |
getLength() |
abstract Link |
getLink(String relation) |
abstract Link.Builder |
getLinkBuilder(String relation) |
abstract Set<Link> |
getLinks() |
abstract URI |
getLocation() |
abstract MediaType |
getMediaType() |
abstract MultivaluedMap<String,Object> |
getMetadata() |
abstract int |
getStatus() |
abstract Response.StatusType |
getStatusInfo() |
abstract MultivaluedMap<String,String> |
getStringHeaders() |
abstract boolean |
hasEntity() |
abstract boolean |
hasLink(String relation) |
static Response.ResponseBuilder |
noContent() |
static Response.ResponseBuilder |
notAcceptable(List<Variant> variants) |
static Response.ResponseBuilder |
notModified() |
static Response.ResponseBuilder |
notModified(EntityTag tag) |
static Response.ResponseBuilder |
notModified(String tag) |
static Response.ResponseBuilder |
ok() |
static Response.ResponseBuilder |
ok(Object entity) |
static Response.ResponseBuilder |
ok(Object entity,
MediaType type) |
static Response.ResponseBuilder |
ok(Object entity,
String type) |
static Response.ResponseBuilder |
ok(Object entity,
Variant variant) |
abstract <T> T |
readEntity(Class<T> entityType) |
abstract <T> T |
readEntity(Class<T> entityType,
Annotation[] annotations) |
abstract <T> T |
readEntity(GenericType<T> entityType) |
abstract <T> T |
readEntity(GenericType<T> entityType,
Annotation[] annotations) |
static Response.ResponseBuilder |
seeOther(URI location) |
static Response.ResponseBuilder |
serverError() |
static Response.ResponseBuilder |
status(int status) |
static Response.ResponseBuilder |
status(int status,
String reasonPhrase) |
static Response.ResponseBuilder |
status(Response.Status status) |
static Response.ResponseBuilder |
status(Response.StatusType status) |
static Response.ResponseBuilder |
temporaryRedirect(URI location) |