Class Response.ResponseBuilder

  • Enclosing class:
    Response

    public abstract static class Response.ResponseBuilder
    extends java.lang.Object
    A class used to build Response instances that contain metadata instead of or in addition to an entity. An initial instance may be obtained via static methods of the Response class, instance methods provide the ability to set metadata. E.g. to create a response that indicates the creation of a new resource:
    @POST
     Response addWidget(...) {
       Widget w = ...
       URI widgetId = UriBuilder.fromResource(Widget.class)...
       return Response.created(widgetId).build();
     }

    Several methods have parameters of type URI, UriBuilder provides convenient methods to create such values as does URI.create().

    Where multiple variants of the same method are provided, the type of the supplied parameter is retained in the metadata of the built Response.

    • Constructor Detail

      • ResponseBuilder

        protected ResponseBuilder()
        Protected constructor, use one of the static methods of Response to obtain an instance.
    • Method Detail

      • newInstance

        protected static Response.ResponseBuilder newInstance()
        Create a new builder instance.
        Returns:
        a new ResponseBuilder
      • build

        public abstract Response build()
        Create a Response instance from the current ResponseBuilder. The builder is reset to a blank state equivalent to calling the ok method.
        Returns:
        a Response instance
      • clone

        public abstract Response.ResponseBuilder clone()
        Create a copy of the ResponseBuilder preserving its state.
        Overrides:
        clone in class java.lang.Object
        Returns:
        a copy of the ResponseBuilder
      • status

        public abstract Response.ResponseBuilder status​(int status)
        Set the status on the ResponseBuilder.
        Parameters:
        status - the response status
        Returns:
        the updated ResponseBuilder
        Throws:
        java.lang.IllegalArgumentException - if status is less than 100 or greater than 599.
      • status

        public Response.ResponseBuilder status​(Response.StatusType status)
        Set the status on the ResponseBuilder.
        Parameters:
        status - the response status
        Returns:
        the updated ResponseBuilder
        Throws:
        java.lang.IllegalArgumentException - if status is null
      • status

        public Response.ResponseBuilder status​(Response.Status status)
        Set the status on the ResponseBuilder.
        Parameters:
        status - the response status
        Returns:
        the updated ResponseBuilder
        Throws:
        java.lang.IllegalArgumentException - if status is null
      • entity

        public abstract Response.ResponseBuilder entity​(java.lang.Object entity)
        Set the entity on the ResponseBuilder. It is the callers responsibility to wrap the actual entity with GenericEntity if preservation of its generic type is required.
        Parameters:
        entity - the response entity
        Returns:
        the updated ResponseBuilder
      • type

        public abstract Response.ResponseBuilder type​(MediaType type)
        Set the response media type on the ResponseBuilder.
        Parameters:
        type - the media type of the response entity, if null any existing value for type will be removed
        Returns:
        the updated ResponseBuilder
      • type

        public abstract Response.ResponseBuilder type​(java.lang.String type)
        Set the response media type on the ResponseBuilder.
        Parameters:
        type - the media type of the response entity, if null any existing value for type will be removed
        Returns:
        the updated ResponseBuilder
        Throws:
        java.lang.IllegalArgumentException - if type cannot be parsed
      • variant

        public abstract Response.ResponseBuilder variant​(Variant variant)
        Set representation metadata on the ResponseBuilder. Equivalent to setting the values of content type, content language, and content encoding separately using the values of the variant properties.
        Parameters:
        variant - metadata of the response entity, a null value is equivalent to a variant with all null properties.
        Returns:
        the updated ResponseBuilder
      • variants

        public abstract Response.ResponseBuilder variants​(java.util.List<Variant> variants)
        Add a Vary header that lists the available variants.
        Parameters:
        variants - a list of available representation variants, a null value will remove an existing value for vary.
        Returns:
        the updated ResponseBuilder
      • language

        public abstract Response.ResponseBuilder language​(java.lang.String language)
        Set the language on the ResponseBuilder.
        Parameters:
        language - the language of the response entity, if null any existing value for language will be removed
        Returns:
        the updated ResponseBuilder
      • language

        public abstract Response.ResponseBuilder language​(java.util.Locale language)
        Set the language on the ResponseBuilder.
        Parameters:
        language - the language of the response entity, if null any existing value for type will be removed
        Returns:
        the updated ResponseBuilder
      • location

        public abstract Response.ResponseBuilder location​(java.net.URI location)
        Set the location on the ResponseBuilder.
        Parameters:
        location - the location. If a relative URI is supplied it will be converted into an absolute URI by resolving it relative to the base URI of the application (see UriInfo.getBaseUri()). If null any existing value for location will be removed.
        Returns:
        the updated ResponseBuilder
      • contentLocation

        public abstract Response.ResponseBuilder contentLocation​(java.net.URI location)
        Set the content location on the ResponseBuilder.
        Parameters:
        location - the content location. Relative or absolute URIs may be used for the value of content location. If null any existing value for content location will be removed.
        Returns:
        the updated ResponseBuilder
      • tag

        public abstract Response.ResponseBuilder tag​(EntityTag tag)
        Set an entity tag on the ResponseBuilder.
        Parameters:
        tag - the entity tag, if null any existing entity tag value will be removed.
        Returns:
        the updated ResponseBuilder
      • tag

        public abstract Response.ResponseBuilder tag​(java.lang.String tag)
        Set a strong entity tag on the ResponseBuilder. This is a shortcut for tag(new EntityTag(value)).
        Parameters:
        tag - the string content of a strong entity tag. The JAX-RS runtime will quote the supplied value when creating the header. If null any existing entity tag value will be removed.
        Returns:
        the updated ResponseBuilder
      • lastModified

        public abstract Response.ResponseBuilder lastModified​(java.util.Date lastModified)
        Set the last modified date on the ResponseBuilder.
        Parameters:
        lastModified - the last modified date, if null any existing last modified value will be removed.
        Returns:
        the updated ResponseBuilder
      • cacheControl

        public abstract Response.ResponseBuilder cacheControl​(CacheControl cacheControl)
        Set the cache control data on the ResponseBuilder.
        Parameters:
        cacheControl - the cache control directives, if null removes any existing cache control directives.
        Returns:
        the updated ResponseBuilder
      • expires

        public abstract Response.ResponseBuilder expires​(java.util.Date expires)
        Set the expires date on the ResponseBuilder.
        Parameters:
        expires - the expiration date, if null removes any existing expires value.
        Returns:
        the updated ResponseBuilder
      • header

        public abstract Response.ResponseBuilder header​(java.lang.String name,
                                                        java.lang.Object value)
        Add a header to the ResponseBuilder.
        Parameters:
        name - the name of the header
        value - the value of the header, the header will be serialized using a RuntimeDelegate.HeaderDelegate if one is available via RuntimeDelegate.createHeaderDelegate(java.lang.Class) for the class of value or using its toString method if a header delegate is not available. If value is null then all current headers of the same name will be removed.
        Returns:
        the updated ResponseBuilder