All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jboss.resteasy.client.ClientExecutor Maven / Gradle / Ivy

There is a newer version: 4.0.0.Beta5
Show newest version
package org.jboss.resteasy.client;

import javax.ws.rs.core.UriBuilder;

/**
 * @author Bill Burke
 * @version $Revision: 1 $
 * @deprecated The Resteasy client framework in resteasy-jaxrs is replaced by the JAX-RS 2.0 compliant resteasy-client module.
 *
 * @see org.jboss.resteasy.client.jaxrs.ClientHttpEngine
 */
@Deprecated
public interface ClientExecutor
{
   ClientRequest createRequest(String uriTemplate);

   ClientRequest createRequest(UriBuilder uriBuilder);

   ClientResponse execute(ClientRequest request) throws Exception;

   void close() throws Exception;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy