package org.jboss.resteasy.client;
import javax.ws.rs.core.UriBuilder;
Author: Bill Burke See Also: - ClientHttpEngine
Version: $Revision: 1 $ Deprecated: The Resteasy client framework in resteasy-jaxrs is replaced by the JAX-RS 2.0 compliant resteasy-client module.
/**
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
* @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;
}