Uses of Class
javax.ws.rs.core.Response.ResponseBuilder

Packages that use Response.ResponseBuilder
javax.ws.rs.core Low-level interfaces and annotations used to create RESTful service resources. 
javax.ws.rs.ext APIs that provide extensions to the types supported by the JAX-RS API. 
org.glassfish.jersey.internal Common Jersey internal API classes. 
org.glassfish.jersey.internal.inject Common Jersey internal injection utility classes. 
org.glassfish.jersey.message.internal Common Jersey internal messaging classes. 
org.glassfish.jersey.server Jersey server-side classes. 
 

Uses of Response.ResponseBuilder in javax.ws.rs.core
 

Methods in javax.ws.rs.core that return Response.ResponseBuilder
static Response.ResponseBuilder Response.accepted()
          Create a new ResponseBuilder with an ACCEPTED status.
static Response.ResponseBuilder Response.accepted(Object entity)
          Create a new ResponseBuilder with an ACCEPTED status that contains a representation.
abstract  Response.ResponseBuilder Response.ResponseBuilder.allow(Set<String> methods)
          Set the list of allowed methods for the resource.
abstract  Response.ResponseBuilder Response.ResponseBuilder.allow(String... methods)
          Set the list of allowed methods for the resource.
abstract  Response.ResponseBuilder Response.ResponseBuilder.cacheControl(CacheControl cacheControl)
          Set the cache control data of the message.
abstract  Response.ResponseBuilder Response.ResponseBuilder.clone()
          
abstract  Response.ResponseBuilder Response.ResponseBuilder.contentLocation(URI location)
          Set the content location.
abstract  Response.ResponseBuilder Response.ResponseBuilder.cookie(NewCookie... cookies)
          Add cookies to the response message.
static Response.ResponseBuilder Response.created(URI location)
          Create a new ResponseBuilder for a created resource, set the location header using the supplied value.
abstract  Response.ResponseBuilder Response.ResponseBuilder.encoding(String encoding)
          Set the message entity content encoding.
abstract  Response.ResponseBuilder Response.ResponseBuilder.entity(Object entity)
          Set the response entity in the builder.
abstract  Response.ResponseBuilder Response.ResponseBuilder.entity(Object entity, Annotation[] annotations)
          Set the response entity in the builder.
 Response.ResponseBuilder Request.evaluatePreconditions()
          Evaluate request preconditions for a resource that does not currently exist.
 Response.ResponseBuilder Request.evaluatePreconditions(Date lastModified)
          Evaluate request preconditions based on the passed in value.
 Response.ResponseBuilder Request.evaluatePreconditions(Date lastModified, EntityTag eTag)
          Evaluate request preconditions based on the passed in value.
 Response.ResponseBuilder Request.evaluatePreconditions(EntityTag eTag)
          Evaluate request preconditions based on the passed in value.
abstract  Response.ResponseBuilder Response.ResponseBuilder.expires(Date expires)
          Set the response expiration date.
static Response.ResponseBuilder Response.fromResponse(Response response)
          Create a new ResponseBuilder by performing a shallow copy of an existing Response.
abstract  Response.ResponseBuilder Response.ResponseBuilder.header(String name, Object value)
          Add an arbitrary header.
abstract  Response.ResponseBuilder Response.ResponseBuilder.language(Locale language)
          Set the message entity language.
abstract  Response.ResponseBuilder Response.ResponseBuilder.language(String language)
          Set the message entity language.
abstract  Response.ResponseBuilder Response.ResponseBuilder.lastModified(Date lastModified)
          Set the response entity last modification date.
abstract  Response.ResponseBuilder Response.ResponseBuilder.link(String uri, String rel)
          Add a link header.
abstract  Response.ResponseBuilder Response.ResponseBuilder.link(URI uri, String rel)
          Add a link header.
abstract  Response.ResponseBuilder Response.ResponseBuilder.links(Link... links)
          Add one or more link headers.
abstract  Response.ResponseBuilder Response.ResponseBuilder.location(URI location)
          Set the location.
protected static Response.ResponseBuilder Response.ResponseBuilder.newInstance()
          Create a new builder instance.
static Response.ResponseBuilder Response.noContent()
          Create a new ResponseBuilder for an empty response.
static Response.ResponseBuilder Response.notAcceptable(List<Variant> variants)
          Create a new ResponseBuilder for a not acceptable response.
static Response.ResponseBuilder Response.notModified()
          Create a new ResponseBuilder with a not-modified status.
static Response.ResponseBuilder Response.notModified(EntityTag tag)
          Create a new ResponseBuilder with a not-modified status.
static Response.ResponseBuilder Response.notModified(String tag)
          Create a new ResponseBuilder with a not-modified status and a strong entity tag.
static Response.ResponseBuilder Response.ok()
          Create a new ResponseBuilder with an OK status.
static Response.ResponseBuilder Response.ok(Object entity)
          Create a new ResponseBuilder that contains a representation.
static Response.ResponseBuilder Response.ok(Object entity, MediaType type)
          Create a new ResponseBuilder that contains a representation.
static Response.ResponseBuilder Response.ok(Object entity, String type)
          Create a new ResponseBuilder that contains a representation.
static Response.ResponseBuilder Response.ok(Object entity, Variant variant)
          Create a new ResponseBuilder that contains a representation.
abstract  Response.ResponseBuilder Response.ResponseBuilder.replaceAll(MultivaluedMap<String,Object> headers)
          Replaces all existing headers with the newly supplied headers.
static Response.ResponseBuilder Response.seeOther(URI location)
          Create a new ResponseBuilder for a redirection.
static Response.ResponseBuilder Response.serverError()
          Create a new ResponseBuilder with an server error status.
static Response.ResponseBuilder Response.status(int status)
          Create a new ResponseBuilder with the supplied status.
abstract  Response.ResponseBuilder Response.ResponseBuilder.status(int status)
          Set the status on the ResponseBuilder.
static Response.ResponseBuilder Response.status(Response.Status status)
          Create a new ResponseBuilder with the supplied status.
 Response.ResponseBuilder Response.ResponseBuilder.status(Response.Status status)
          Set the status on the ResponseBuilder.
static Response.ResponseBuilder Response.status(Response.StatusType status)
          Create a new ResponseBuilder with the supplied status.
 Response.ResponseBuilder Response.ResponseBuilder.status(Response.StatusType status)
          Set the status on the ResponseBuilder.
abstract  Response.ResponseBuilder Response.ResponseBuilder.tag(EntityTag tag)
          Set a response entity tag.
abstract  Response.ResponseBuilder Response.ResponseBuilder.tag(String tag)
          Set a strong response entity tag.
static Response.ResponseBuilder Response.temporaryRedirect(URI location)
          Create a new ResponseBuilder for a temporary redirection.
abstract  Response.ResponseBuilder Response.ResponseBuilder.type(MediaType type)
          Set the message entity media type.
abstract  Response.ResponseBuilder Response.ResponseBuilder.type(String type)
          Set the message entity media type.
abstract  Response.ResponseBuilder Response.ResponseBuilder.variant(Variant variant)
          Set message entity representation metadata.
abstract  Response.ResponseBuilder Response.ResponseBuilder.variants(List<Variant> variants)
          Add a Vary header that lists the available variants.
abstract  Response.ResponseBuilder Response.ResponseBuilder.variants(Variant... variants)
          Add 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.ResponseBuilder
abstract  Response.ResponseBuilder RuntimeDelegate.createResponseBuilder()
          Create a new instance of a Response.ResponseBuilder.
 

Uses of Response.ResponseBuilder in org.glassfish.jersey.internal
 

Methods in org.glassfish.jersey.internal that return Response.ResponseBuilder
 Response.ResponseBuilder AbstractRuntimeDelegate.createResponseBuilder()
           
 

Uses of Response.ResponseBuilder in org.glassfish.jersey.internal.inject
 

Methods in org.glassfish.jersey.internal.inject that return Response.ResponseBuilder
 Response.ResponseBuilder RequestInjectee.evaluatePreconditions()
           
 Response.ResponseBuilder RequestInjectee.evaluatePreconditions(Date lastModified)
           
 Response.ResponseBuilder RequestInjectee.evaluatePreconditions(Date lastModified, EntityTag eTag)
           
 Response.ResponseBuilder RequestInjectee.evaluatePreconditions(EntityTag eTag)
           
 

Uses of Response.ResponseBuilder in org.glassfish.jersey.message.internal
 

Subclasses of Response.ResponseBuilder in org.glassfish.jersey.message.internal
static class OutboundJaxrsResponse.Builder
          Outbound JAX-RS Response.ResponseBuilder implementation.
 

Methods in org.glassfish.jersey.message.internal that return Response.ResponseBuilder
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.allow(Set<String> methods)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.allow(String... methods)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.cacheControl(CacheControl cacheControl)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.clone()
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.contentLocation(URI location)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.cookie(NewCookie... cookies)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.encoding(String encoding)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.entity(Object entity)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.entity(Object entity, Annotation[] annotations)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.expires(Date expires)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.header(String name, Object value)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.language(Locale language)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.language(String language)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.lastModified(Date lastModified)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.link(String uri, String rel)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.link(URI uri, String rel)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.links(Link... links)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.location(URI location)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.replaceAll(MultivaluedMap<String,Object> headers)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.status(int code)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.status(Response.StatusType status)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.tag(EntityTag tag)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.tag(String tag)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.type(MediaType type)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.type(String type)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.variant(Variant variant)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.variants(List<Variant> variants)
           
 Response.ResponseBuilder OutboundJaxrsResponse.Builder.variants(Variant... variants)
           
 

Uses of Response.ResponseBuilder in org.glassfish.jersey.server
 

Methods in org.glassfish.jersey.server that return Response.ResponseBuilder
 Response.ResponseBuilder ContainerRequest.evaluatePreconditions()
           
 Response.ResponseBuilder ContainerRequest.evaluatePreconditions(Date lastModified)
           
 Response.ResponseBuilder ContainerRequest.evaluatePreconditions(Date lastModified, EntityTag eTag)
           
 Response.ResponseBuilder ContainerRequest.evaluatePreconditions(EntityTag eTag)
           
 



Copyright © 2007-2014, Oracle and/or its affiliates. All Rights Reserved. Use is subject to license terms.