Package | Description |
---|---|
org.xins.client |
XINS client framework.
|
org.xins.common.http |
HTTP-related utility classes.
|
Modifier and Type | Method and Description |
---|---|
HTTPMethod |
XINSCallConfig.getHTTPMethod()
Returns the HTTP method associated with this configuration.
|
Modifier and Type | Method and Description |
---|---|
void |
XINSCallConfig.setHTTPMethod(HTTPMethod method)
Sets the HTTP method associated with this configuration.
|
Constructor and Description |
---|
XINSCallRequest(String functionName,
Map<String,String> 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. |
Modifier and Type | Field and Description |
---|---|
static HTTPMethod |
HTTPMethod.DELETE
The DELETE method.
|
static HTTPMethod |
HTTPMethod.GET
The GET method.
|
static HTTPMethod |
HTTPMethod.HEAD
The HEAD method.
|
static HTTPMethod |
HTTPMethod.OPTIONS
The OPTIONS method.
|
static HTTPMethod |
HTTPMethod.POST
The POST method.
|
static HTTPMethod |
HTTPMethod.PUT
The PUT method.
|
static HTTPMethod |
HTTPMethod.TRACE
The TRACE method.
|
Modifier and Type | Method and Description |
---|---|
HTTPMethod |
HTTPCallRequest.getMethod()
Returns the HTTP method associated with this call request.
|
HTTPMethod |
HTTPCallConfig.getMethod()
Returns the HTTP method associated with this configuration.
|
Modifier and Type | Method and Description |
---|---|
void |
HTTPCallConfig.setMethod(HTTPMethod method)
Sets the HTTP method associated with this configuration.
|
Constructor and Description |
---|
HTTPCallRequest(HTTPMethod method)
Constructs a new
HTTPCallRequest with the specified HTTP
method. |
HTTPCallRequest(HTTPMethod method,
Map<String,String> parameters)
Constructs a new
HTTPCallRequest with the specified HTTP
method and parameters. |
HTTPCallRequest(HTTPMethod method,
Map<String,String> 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/.