Class ClientInvocationBuilder

    • Method Detail

      • setClientInvocation

        public void setClientInvocation​(ClientInvocation invocation)
      • getClientInvocation

        public ClientInvocation getClientInvocation()
        exposes the client invocation for easier integration with other libraries
        Returns:
        the underlying client invocation
      • cacheControl

        public Invocation.Builder cacheControl​(CacheControl cacheControl)
        Description copied from interface: Invocation.Builder
        Set the cache control data of the message.
        Specified by:
        cacheControl in interface Invocation.Builder
        Parameters:
        cacheControl - the cache control directives, if null any existing cache control directives will be removed.
        Returns:
        the updated builder.
      • build

        public Invocation build​(String method)
        Description copied from interface: Invocation.Builder
        Build a request invocation using an arbitrary request method name.
        Specified by:
        build in interface Invocation.Builder
        Parameters:
        method - request method name.
        Returns:
        invocation encapsulating the built request.
      • build

        public Invocation build​(String method,
                                Entity<?> entity)
        Description copied from interface: Invocation.Builder
        Build a request invocation using an arbitrary request method name and request entity.
        Specified by:
        build in interface Invocation.Builder
        Parameters:
        method - request method name.
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation encapsulating the built request.
      • buildPost

        public Invocation buildPost​(Entity<?> entity)
        Description copied from interface: Invocation.Builder
        Build a POST request invocation.
        Specified by:
        buildPost in interface Invocation.Builder
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation encapsulating the built POST request.
      • buildPut

        public Invocation buildPut​(Entity<?> entity)
        Description copied from interface: Invocation.Builder
        Build a PUT request invocation.
        Specified by:
        buildPut in interface Invocation.Builder
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation encapsulating the built PUT request.
      • async

        public AsyncInvoker async()
        Description copied from interface: Invocation.Builder
        Access the asynchronous uniform request invocation interface to asynchronously invoke the built request.
        Specified by:
        async in interface Invocation.Builder
        Returns:
        asynchronous uniform request invocation interface.
      • get

        public Response get()
        Description copied from interface: SyncInvoker
        Invoke HTTP GET method for the current request synchronously.
        Specified by:
        get in interface SyncInvoker
        Returns:
        invocation response.
      • get

        public <T> T get​(Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP GET method for the current request synchronously.
        Specified by:
        get in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • get

        public <T> T get​(GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP GET method for the current request synchronously.
        Specified by:
        get in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • put

        public Response put​(Entity<?> entity)
        Description copied from interface: SyncInvoker
        Invoke HTTP PUT method for the current request synchronously.
        Specified by:
        put in interface SyncInvoker
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation response.
      • put

        public <T> T put​(Entity<?> entity,
                         Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP PUT method for the current request synchronously.
        Specified by:
        put in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • put

        public <T> T put​(Entity<?> entity,
                         GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP PUT method for the current request synchronously.
        Specified by:
        put in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • post

        public Response post​(Entity<?> entity)
        Description copied from interface: SyncInvoker
        Invoke HTTP POST method for the current request synchronously.
        Specified by:
        post in interface SyncInvoker
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation response.
      • post

        public <T> T post​(Entity<?> entity,
                          Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP POST method for the current request synchronously.
        Specified by:
        post in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • post

        public <T> T post​(Entity<?> entity,
                          GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP POST method for the current request synchronously.
        Specified by:
        post in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • delete

        public Response delete()
        Description copied from interface: SyncInvoker
        Invoke HTTP DELETE method for the current request synchronously.
        Specified by:
        delete in interface SyncInvoker
        Returns:
        invocation response.
      • delete

        public <T> T delete​(Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP DELETE method for the current request synchronously.
        Specified by:
        delete in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • delete

        public <T> T delete​(GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP DELETE method for the current request synchronously.
        Specified by:
        delete in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • head

        public Response head()
        Description copied from interface: SyncInvoker
        Invoke HTTP HEAD method for the current request synchronously.
        Specified by:
        head in interface SyncInvoker
        Returns:
        invocation response.
      • options

        public Response options()
        Description copied from interface: SyncInvoker
        Invoke HTTP OPTIONS method for the current request synchronously.
        Specified by:
        options in interface SyncInvoker
        Returns:
        invocation response.
      • options

        public <T> T options​(Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP OPTIONS method for the current request synchronously.
        Specified by:
        options in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • options

        public <T> T options​(GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP OPTIONS method for the current request synchronously.
        Specified by:
        options in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • trace

        public Response trace()
        Description copied from interface: SyncInvoker
        Invoke HTTP TRACE method for the current request synchronously.
        Specified by:
        trace in interface SyncInvoker
        Returns:
        invocation response.
      • trace

        public <T> T trace​(Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP TRACE method for the current request synchronously.
        Specified by:
        trace in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • trace

        public <T> T trace​(GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke HTTP TRACE method for the current request synchronously.
        Specified by:
        trace in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • method

        public Response method​(String name)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Parameters:
        name - method name.
        Returns:
        invocation response.
      • method

        public <T> T method​(String name,
                            Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        name - method name.
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • method

        public <T> T method​(String name,
                            GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        name - method name.
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • method

        public Response method​(String name,
                               Entity<?> entity)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Parameters:
        name - method name.
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        Returns:
        invocation response.
      • method

        public <T> T method​(String name,
                            Entity<?> entity,
                            Class<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Type Parameters:
        T - response entity type.
        Parameters:
        name - method name.
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - Java type the response entity will be converted to.
        Returns:
        invocation response.
      • method

        public <T> T method​(String name,
                            Entity<?> entity,
                            GenericType<T> responseType)
        Description copied from interface: SyncInvoker
        Invoke an arbitrary method for the current request synchronously.
        Specified by:
        method in interface SyncInvoker
        Type Parameters:
        T - generic response entity type.
        Parameters:
        name - method name.
        entity - request entity, including it's full Variant information. Any variant-related HTTP headers previously set (namely Content-Type, Content-Language and Content-Encoding) will be overwritten using the entity variant information.
        responseType - representation of a generic Java type the response entity will be converted to.
        Returns:
        invocation response.
      • isChunked

        public boolean isChunked()
      • setChunked

        public void setChunked​(boolean chunked)
      • rx

        public <T extends RxInvoker> T rx​(Class<T> clazz)
        Description copied from interface: Invocation.Builder
        Access a reactive invoker based on a RxInvoker subclass provider. Note that corresponding RxInvokerProvider must be registered in the client runtime.

        This method is an extension point for JAX-RS implementations to support other types representing asynchronous computations.

        Specified by:
        rx in interface Invocation.Builder
        Type Parameters:
        T - generic invoker type.
        Parameters:
        clazz - RxInvoker subclass.
        Returns:
        reactive invoker instance.
        See Also:
        Configurable.register(Class)
      • patch

        public <T> T patch​(Entity<?> entity,
                           Class<T> responseType)
      • getURI

        public URI getURI()
      • setTarget

        public void setTarget​(WebTarget target)