Uses of Class
org.xins.common.http.HTTPMethod

Packages that use HTTPMethod
org.xins.client XINS client framework. 
org.xins.common.http HTTP-related utility classes. 
 

Uses of HTTPMethod in org.xins.client
 

Methods in org.xins.client that return HTTPMethod
 HTTPMethod XINSCallConfig.getHTTPMethod()
          Returns the HTTP method associated with this configuration.
 

Methods in org.xins.client with parameters of type HTTPMethod
 void XINSCallConfig.setHTTPMethod(HTTPMethod method)
          Sets the HTTP method associated with this configuration.
 

Constructors in org.xins.client with parameters of type HTTPMethod
XINSCallRequest(String functionName, PropertyReader parameters, boolean failOverAllowed, HTTPMethod method)
          Constructs a new XINSCallRequest for the specified function and parameters, possibly allowing fail-over, optionally specifying the HTTP method to use.
 

Uses of HTTPMethod in org.xins.common.http
 

Fields in org.xins.common.http declared as HTTPMethod
static HTTPMethod HTTPMethod.GET
          The GET method.
static HTTPMethod HTTPMethod.POST
          The POST method.
 

Methods in org.xins.common.http that return HTTPMethod
 HTTPMethod HTTPCallConfig.getMethod()
          Returns the HTTP method associated with this configuration.
 HTTPMethod HTTPCallRequest.getMethod()
          Returns the HTTP method associated with this call request.
 

Methods in org.xins.common.http with parameters of type HTTPMethod
 void HTTPCallConfig.setMethod(HTTPMethod method)
          Sets the HTTP method associated with this configuration.
 

Constructors in org.xins.common.http with parameters of type HTTPMethod
HTTPCallRequest(HTTPMethod method)
          Constructs a new HTTPCallRequest with the specified HTTP method.
HTTPCallRequest(HTTPMethod method, PropertyReader parameters)
          Constructs a new HTTPCallRequest with the specified HTTP method and parameters.
HTTPCallRequest(HTTPMethod method, PropertyReader parameters, boolean failOverAllowed, HTTPStatusCodeVerifier statusCodeVerifier)
          Constructs a new HTTPCallRequest with the specified HTTP method, parameters and status code verifier, optionally allowing unconditional fail-over.
 



See http://www.xins.org/.