Package com.sun.jersey.client.impl

Examples of com.sun.jersey.client.impl.ClientRequestImpl


    public Future<?> post() throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "POST"));
    }

    public Future<?> post(Object requestEntity) throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "POST", requestEntity));
    }
View Full Code Here


    public Future<?> post(Object requestEntity) throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "POST", requestEntity));
    }

    public <T> Future<T> post(Class<T> c) throws UniformInterfaceException {
        return handle(c, new ClientRequestImpl(getURI(), "POST"));
    }
View Full Code Here

    public <T> Future<T> post(Class<T> c) throws UniformInterfaceException {
        return handle(c, new ClientRequestImpl(getURI(), "POST"));
    }

    public <T> Future<T> post(GenericType<T> gt) throws UniformInterfaceException {
        return handle(gt, new ClientRequestImpl(getURI(), "POST"));
    }
View Full Code Here

    public <T> Future<T> post(GenericType<T> gt) throws UniformInterfaceException {
        return handle(gt, new ClientRequestImpl(getURI(), "POST"));
    }

    public <T> Future<T> post(ITypeListener<T> l) {
        return handle(l, new ClientRequestImpl(getURI(), "POST"));
    }
View Full Code Here

    public <T> Future<T> post(ITypeListener<T> l) {
        return handle(l, new ClientRequestImpl(getURI(), "POST"));
    }

    public <T> Future<T> post(Class<T> c, Object requestEntity) throws UniformInterfaceException {
        return handle(c, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }
View Full Code Here

    public <T> Future<T> post(Class<T> c, Object requestEntity) throws UniformInterfaceException {
        return handle(c, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }

    public <T> Future<T> post(GenericType<T> gt, Object requestEntity) throws UniformInterfaceException {
        return handle(gt, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }
View Full Code Here

    public <T> Future<T> post(GenericType<T> gt, Object requestEntity) throws UniformInterfaceException {
        return handle(gt, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }

    public <T> Future<T> post(ITypeListener<T> l, Object requestEntity) {
        return handle(l, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }
View Full Code Here

    public <T> Future<T> post(ITypeListener<T> l, Object requestEntity) {
        return handle(l, new ClientRequestImpl(getURI(), "POST", requestEntity));
    }

    public Future<?> delete() throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "DELETE"));
    }
View Full Code Here

    public Future<?> delete() throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "DELETE"));
    }

    public Future<?> delete(Object requestEntity) throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "DELETE", requestEntity));
    }
View Full Code Here

    public Future<?> delete(Object requestEntity) throws UniformInterfaceException {
        return voidHandle(new ClientRequestImpl(getURI(), "DELETE", requestEntity));
    }

    public <T> Future<T> delete(Class<T> c) throws UniformInterfaceException {
        return handle(c, new ClientRequestImpl(getURI(), "DELETE"));
    }
View Full Code Here

TOP

Related Classes of com.sun.jersey.client.impl.ClientRequestImpl

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.