@InterfaceAudience.Public @InterfaceStability.Stable public class Client extends Object
| Modifier and Type | Field and Description | 
|---|---|
| static org.apache.commons.httpclient.Header[] | EMPTY_HEADER_ARRAY | 
| Constructor and Description | 
|---|
| Client()Default Constructor | 
| Client(Cluster cluster)Constructor | 
| Client(Cluster cluster,
      boolean sslEnabled)Constructor | 
| Modifier and Type | Method and Description | 
|---|---|
| void | addExtraHeader(String name,
              String value)Add extra headers. | 
| Response | delete(Cluster cluster,
      String path)Send a DELETE request | 
| Response | delete(Cluster cluster,
      String path,
      org.apache.commons.httpclient.Header extraHdr)Send a DELETE request | 
| Response | delete(String path)Send a DELETE request | 
| Response | delete(String path,
      org.apache.commons.httpclient.Header extraHdr)Send a DELETE request | 
| int | execute(Cluster cluster,
       org.apache.commons.httpclient.HttpMethod method,
       org.apache.commons.httpclient.Header[] headers,
       String path)Execute a transaction method. | 
| int | executePathOnly(Cluster cluster,
               org.apache.commons.httpclient.HttpMethod method,
               org.apache.commons.httpclient.Header[] headers,
               String path)Execute a transaction method given only the path. | 
| int | executeURI(org.apache.commons.httpclient.HttpMethod method,
          org.apache.commons.httpclient.Header[] headers,
          String uri)Execute a transaction method given a complete URI. | 
| Response | get(Cluster cluster,
   String path)Send a GET request | 
| Response | get(Cluster c,
   String path,
   org.apache.commons.httpclient.Header[] headers)Send a GET request | 
| Response | get(Cluster cluster,
   String path,
   String accept)Send a GET request | 
| Response | get(String path)Send a GET request | 
| Response | get(String path,
   org.apache.commons.httpclient.Header[] headers)Send a GET request | 
| Response | get(String path,
   String accept)Send a GET request | 
| Cluster | getCluster() | 
| String | getExtraHeader(String name)Get an extra header value. | 
| Map<String,String> | getExtraHeaders()Get all extra headers (read-only). | 
| org.apache.commons.httpclient.HttpClient | getHttpClient() | 
| Response | head(Cluster cluster,
    String path,
    org.apache.commons.httpclient.Header[] headers)Send a HEAD request | 
| Response | head(String path)Send a HEAD request | 
| Response | post(Cluster cluster,
    String path,
    org.apache.commons.httpclient.Header[] headers,
    byte[] content)Send a POST request | 
| Response | post(Cluster cluster,
    String path,
    String contentType,
    byte[] content)Send a POST request | 
| Response | post(Cluster cluster,
    String path,
    String contentType,
    byte[] content,
    org.apache.commons.httpclient.Header extraHdr)Send a POST request | 
| Response | post(String path,
    org.apache.commons.httpclient.Header[] headers,
    byte[] content)Send a POST request | 
| Response | post(String path,
    String contentType,
    byte[] content)Send a POST request | 
| Response | post(String path,
    String contentType,
    byte[] content,
    org.apache.commons.httpclient.Header extraHdr)Send a POST request | 
| Response | put(Cluster cluster,
   String path,
   org.apache.commons.httpclient.Header[] headers,
   byte[] content)Send a PUT request | 
| Response | put(Cluster cluster,
   String path,
   String contentType,
   byte[] content)Send a PUT request | 
| Response | put(Cluster cluster,
   String path,
   String contentType,
   byte[] content,
   org.apache.commons.httpclient.Header extraHdr)Send a PUT request | 
| Response | put(String path,
   org.apache.commons.httpclient.Header[] headers,
   byte[] content)Send a PUT request | 
| Response | put(String path,
   String contentType,
   byte[] content)Send a PUT request | 
| Response | put(String path,
   String contentType,
   byte[] content,
   org.apache.commons.httpclient.Header extraHdr)Send a PUT request | 
| void | removeExtraHeader(String name)Remove an extra header. | 
| void | setCluster(Cluster cluster) | 
| void | shutdown()Shut down the client. | 
public static final org.apache.commons.httpclient.Header[] EMPTY_HEADER_ARRAY
public Client()
public Client(Cluster cluster)
cluster - the cluster definitionpublic Client(Cluster cluster, boolean sslEnabled)
cluster - the cluster definitionsslEnabled - enable SSL or notpublic void shutdown()
public org.apache.commons.httpclient.HttpClient getHttpClient()
public void addExtraHeader(String name, String value)
public void removeExtraHeader(String name)
public int executePathOnly(Cluster cluster, org.apache.commons.httpclient.HttpMethod method, org.apache.commons.httpclient.Header[] headers, String path) throws IOException
cluster - the cluster definitionmethod - the transaction methodheaders - HTTP header values to sendpath - the properly urlencoded pathIOExceptionpublic int executeURI(org.apache.commons.httpclient.HttpMethod method,
             org.apache.commons.httpclient.Header[] headers,
             String uri)
               throws IOException
method - the transaction methodheaders - HTTP header values to senduri - a properly urlencoded URIIOExceptionpublic int execute(Cluster cluster, org.apache.commons.httpclient.HttpMethod method, org.apache.commons.httpclient.Header[] headers, String path) throws IOException
cluster - the cluster definitionmethod - the HTTP methodheaders - HTTP header values to sendpath - the properly urlencoded path or URIIOExceptionpublic Cluster getCluster()
public void setCluster(Cluster cluster)
cluster - the cluster definitionpublic Response head(String path) throws IOException
path - the path or URIIOExceptionpublic Response head(Cluster cluster, String path, org.apache.commons.httpclient.Header[] headers) throws IOException
cluster - the cluster definitionpath - the path or URIheaders - the HTTP headers to include in the requestIOExceptionpublic Response get(String path) throws IOException
path - the path or URIIOExceptionpublic Response get(Cluster cluster, String path) throws IOException
cluster - the cluster definitionpath - the path or URIIOExceptionpublic Response get(String path, String accept) throws IOException
path - the path or URIaccept - Accept header valueIOExceptionpublic Response get(Cluster cluster, String path, String accept) throws IOException
cluster - the cluster definitionpath - the path or URIaccept - Accept header valueIOExceptionpublic Response get(String path, org.apache.commons.httpclient.Header[] headers) throws IOException
path - the path or URIheaders - the HTTP headers to include in the request,
 Accept must be suppliedIOExceptionpublic Response get(Cluster c, String path, org.apache.commons.httpclient.Header[] headers) throws IOException
c - the cluster definitionpath - the path or URIheaders - the HTTP headers to include in the requestIOExceptionpublic Response put(String path, String contentType, byte[] content) throws IOException
path - the path or URIcontentType - the content MIME typecontent - the content bytesIOExceptionpublic Response put(String path, String contentType, byte[] content, org.apache.commons.httpclient.Header extraHdr) throws IOException
path - the path or URIcontentType - the content MIME typecontent - the content bytesextraHdr - extra Header to sendIOExceptionpublic Response put(Cluster cluster, String path, String contentType, byte[] content) throws IOException
cluster - the cluster definitionpath - the path or URIcontentType - the content MIME typecontent - the content bytesIOException - for errorpublic Response put(Cluster cluster, String path, String contentType, byte[] content, org.apache.commons.httpclient.Header extraHdr) throws IOException
cluster - the cluster definitionpath - the path or URIcontentType - the content MIME typecontent - the content bytesextraHdr - additional Header to sendIOException - for errorpublic Response put(String path, org.apache.commons.httpclient.Header[] headers, byte[] content) throws IOException
path - the path or URIheaders - the HTTP headers to include, Content-Type must be
 suppliedcontent - the content bytesIOExceptionpublic Response put(Cluster cluster, String path, org.apache.commons.httpclient.Header[] headers, byte[] content) throws IOException
cluster - the cluster definitionpath - the path or URIheaders - the HTTP headers to include, Content-Type must be
 suppliedcontent - the content bytesIOExceptionpublic Response post(String path, String contentType, byte[] content) throws IOException
path - the path or URIcontentType - the content MIME typecontent - the content bytesIOExceptionpublic Response post(String path, String contentType, byte[] content, org.apache.commons.httpclient.Header extraHdr) throws IOException
path - the path or URIcontentType - the content MIME typecontent - the content bytesextraHdr - additional Header to sendIOExceptionpublic Response post(Cluster cluster, String path, String contentType, byte[] content) throws IOException
cluster - the cluster definitionpath - the path or URIcontentType - the content MIME typecontent - the content bytesIOException - for errorpublic Response post(Cluster cluster, String path, String contentType, byte[] content, org.apache.commons.httpclient.Header extraHdr) throws IOException
cluster - the cluster definitionpath - the path or URIcontentType - the content MIME typecontent - the content bytesextraHdr - additional Header to sendIOException - for errorpublic Response post(String path, org.apache.commons.httpclient.Header[] headers, byte[] content) throws IOException
path - the path or URIheaders - the HTTP headers to include, Content-Type must be
 suppliedcontent - the content bytesIOExceptionpublic Response post(Cluster cluster, String path, org.apache.commons.httpclient.Header[] headers, byte[] content) throws IOException
cluster - the cluster definitionpath - the path or URIheaders - the HTTP headers to include, Content-Type must be
 suppliedcontent - the content bytesIOExceptionpublic Response delete(String path) throws IOException
path - the path or URIIOExceptionpublic Response delete(String path, org.apache.commons.httpclient.Header extraHdr) throws IOException
path - the path or URIextraHdr - additional Header to sendIOExceptionpublic Response delete(Cluster cluster, String path) throws IOException
cluster - the cluster definitionpath - the path or URIIOException - for errorpublic Response delete(Cluster cluster, String path, org.apache.commons.httpclient.Header extraHdr) throws IOException
cluster - the cluster definitionpath - the path or URIIOException - for errorCopyright © 2007–2019 The Apache Software Foundation. All rights reserved.