Uses of Class
javax.ws.rs.core.Response.ResponseBuilder
Packages that use Response.ResponseBuilder
Package
Description
Low-level interfaces and annotations used to create RESTful service
resources.
APIs that provide extensions to the types supported by the JAX-RS API.
-
Uses of Response.ResponseBuilder in javax.ws.rs.core
Methods in javax.ws.rs.core that return Response.ResponseBuilderModifier and TypeMethodDescriptionabstract Response.ResponseBuilderResponse.ResponseBuilder.cacheControl(CacheControl cacheControl) Set the cache control data on the ResponseBuilder.abstract Response.ResponseBuilderResponse.ResponseBuilder.clone()Create a copy of the ResponseBuilder preserving its state.abstract Response.ResponseBuilderResponse.ResponseBuilder.contentLocation(URI location) Set the content location on the ResponseBuilder.abstract Response.ResponseBuilderAdd cookies to the ResponseBuilder.static Response.ResponseBuilderCreate a new ResponseBuilder for a created resource, set the location header using the supplied value.abstract Response.ResponseBuilderSet the entity on the ResponseBuilder.Request.evaluatePreconditions()Evaluate request preconditions for a resource that does not currently exist.Request.evaluatePreconditions(Date lastModified) Evaluate request preconditions based on the passed in value.Request.evaluatePreconditions(Date lastModified, EntityTag eTag) Evaluate request preconditions based on the passed in value.Request.evaluatePreconditions(EntityTag eTag) Evaluate request preconditions based on the passed in value.abstract Response.ResponseBuilderSet the expires date on the ResponseBuilder.static Response.ResponseBuilderResponse.fromResponse(Response response) Create a new ResponseBuilder by performing a shallow copy of an existing Response.abstract Response.ResponseBuilderAdd a header to the ResponseBuilder.abstract Response.ResponseBuilderSet the language on the ResponseBuilder.abstract Response.ResponseBuilderSet the language on the ResponseBuilder.abstract Response.ResponseBuilderResponse.ResponseBuilder.lastModified(Date lastModified) Set the last modified date on the ResponseBuilder.abstract Response.ResponseBuilderSet the location on the ResponseBuilder.protected static Response.ResponseBuilderResponse.ResponseBuilder.newInstance()Create a new builder instance.static Response.ResponseBuilderResponse.noContent()Create a new ResponseBuilder for an empty response.static Response.ResponseBuilderResponse.notAcceptable(List<Variant> variants) Create a new ResponseBuilder for a not acceptable response.static Response.ResponseBuilderResponse.notModified()Create a new ResponseBuilder with a not-modified status.static Response.ResponseBuilderResponse.notModified(String tag) Create a new ResponseBuilder with a not-modified status and a strong entity tag.static Response.ResponseBuilderResponse.notModified(EntityTag tag) Create a new ResponseBuilder with a not-modified status.static Response.ResponseBuilderResponse.ok()Create a new ResponseBuilder with an OK status.static Response.ResponseBuilderCreate a new ResponseBuilder that contains a representation.static Response.ResponseBuilderCreate a new ResponseBuilder that contains a representation.static Response.ResponseBuilderCreate a new ResponseBuilder that contains a representation.static Response.ResponseBuilderCreate a new ResponseBuilder that contains a representation.static Response.ResponseBuilderCreate a new ResponseBuilder for a redirection.static Response.ResponseBuilderResponse.serverError()Create a new ResponseBuilder with an server error status.abstract Response.ResponseBuilderResponse.ResponseBuilder.status(int status) Set the status on the ResponseBuilder.Response.ResponseBuilder.status(Response.Status status) Set the status on the ResponseBuilder.Response.ResponseBuilder.status(Response.StatusType status) Set the status on the ResponseBuilder.static Response.ResponseBuilderResponse.status(int status) Create a new ResponseBuilder with the supplied status.static Response.ResponseBuilderResponse.status(Response.Status status) Create a new ResponseBuilder with the supplied status.static Response.ResponseBuilderResponse.status(Response.StatusType status) Create a new ResponseBuilder with the supplied status.abstract Response.ResponseBuilderSet a strong entity tag on the ResponseBuilder.abstract Response.ResponseBuilderSet an entity tag on the ResponseBuilder.static Response.ResponseBuilderResponse.temporaryRedirect(URI location) Create a new ResponseBuilder for a temporary redirection.abstract Response.ResponseBuilderSet the response media type on the ResponseBuilder.abstract Response.ResponseBuilderSet the response media type on the ResponseBuilder.abstract Response.ResponseBuilderSet representation metadata on the ResponseBuilder.abstract Response.ResponseBuilderAdd a Vary header that lists the available variants. -
Uses of Response.ResponseBuilder in javax.ws.rs.ext
Methods in javax.ws.rs.ext that return Response.ResponseBuilderModifier and TypeMethodDescriptionabstract Response.ResponseBuilderRuntimeDelegate.createResponseBuilder()Create a new instance of aResponse.ResponseBuilder.