Skip navigation links
A B C E G H I J M N O P R S T V 

A

assertValid(JsonNode) - Static method in class io.resourcepool.jarpic.parser.ResponseParser
Assert JsonNode is valid JSON RPC 2.0 Response (either object or array).
assertValid(JsonNode) - Static method in class io.resourcepool.jarpic.validator.JsonRpc2SchemaValidator
Check whether a JSON node is a valid JsonRPC 2.0 object or not.

B

build() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
build() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
builder() - Static method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
builder() - Static method in class io.resourcepool.jarpic.model.JsonRpcResponse
 

C

combine(JsonRpcRequest...) - Static method in class io.resourcepool.jarpic.model.JsonRpcRequest
Combine a sequence of JsonRpcRequests into a list.

E

equals(Object) - Method in class io.resourcepool.jarpic.model.Error
 
equals(Object) - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
equals(Object) - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
Error - Class in io.resourcepool.jarpic.model
 
Error() - Constructor for class io.resourcepool.jarpic.model.Error
Default Constructor.
Error(int, String, Object) - Constructor for class io.resourcepool.jarpic.model.Error
Constructor.
error - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
error(Error) - Method in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
error - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse
 

G

getCode() - Method in class io.resourcepool.jarpic.model.Error
 
getData() - Method in class io.resourcepool.jarpic.model.Error
 
getError() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
getId() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
getId() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
getMessage() - Method in class io.resourcepool.jarpic.model.Error
 
getMethod() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
getParams() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
getResult() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
getType() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 

H

hashCode() - Method in class io.resourcepool.jarpic.model.Error
 
hashCode() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
hashCode() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
HttpJsonRpcClient - Class in io.resourcepool.jarpic.client
 
HttpJsonRpcClient(String) - Constructor for class io.resourcepool.jarpic.client.HttpJsonRpcClient
Construct a new HttpJsonRpcClient.
HttpJsonRpcClient(String, OkHttpClient) - Constructor for class io.resourcepool.jarpic.client.HttpJsonRpcClient
Construct a new HttpJsonRpcClient.

I

id - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
id - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest
 
id - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
id(String) - Method in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
id - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse
 
io.resourcepool.jarpic.client - package io.resourcepool.jarpic.client
 
io.resourcepool.jarpic.model - package io.resourcepool.jarpic.model
 
io.resourcepool.jarpic.parser - package io.resourcepool.jarpic.parser
 
io.resourcepool.jarpic.validator - package io.resourcepool.jarpic.validator
 

J

JsonRpc2SchemaValidator - Class in io.resourcepool.jarpic.validator
 
JsonRpc2SchemaValidator() - Constructor for class io.resourcepool.jarpic.validator.JsonRpc2SchemaValidator
 
JsonRpcCallback<T> - Interface in io.resourcepool.jarpic.model
This class allows for a JSON RPC request to be made asynchronously.
JsonRpcClient - Interface in io.resourcepool.jarpic.client
 
JsonRpcMultiCallback<T> - Interface in io.resourcepool.jarpic.model
This class allows for a set of JSON RPC requests to be made asynchronously.
JsonRpcRequest - Class in io.resourcepool.jarpic.model
 
JsonRpcRequest() - Constructor for class io.resourcepool.jarpic.model.JsonRpcRequest
 
JsonRpcRequest.Builder - Class in io.resourcepool.jarpic.model
 
JsonRpcRequest.Type - Enum in io.resourcepool.jarpic.model
 
JsonRpcResponse<T> - Class in io.resourcepool.jarpic.model
 
JsonRpcResponse() - Constructor for class io.resourcepool.jarpic.model.JsonRpcResponse
 
JsonRpcResponse.Builder<T> - Class in io.resourcepool.jarpic.model
 

M

map(JsonRpcRequest) - Static method in class io.resourcepool.jarpic.parser.RequestMapper
Map existing JsonRpcRequest to Jackson JsonNode.
map(List<JsonRpcRequest>) - Static method in class io.resourcepool.jarpic.parser.RequestMapper
Map existing JsonRpcRequests to Jackson JsonNode.
method - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
method(String) - Method in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
method - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest
 

N

notifBuilder() - Static method in class io.resourcepool.jarpic.model.JsonRpcRequest
 

O

onFailure(IOException) - Method in interface io.resourcepool.jarpic.model.JsonRpcCallback
Called when an error occured during the Http Request.
onFailure(IOException) - Method in interface io.resourcepool.jarpic.model.JsonRpcMultiCallback
Called when an error occured during the Http Request.
onResponse(JsonRpcResponse<T>) - Method in interface io.resourcepool.jarpic.model.JsonRpcCallback
Called when response has been received from remote server.
onResponse(List<JsonRpcResponse<T>>) - Method in interface io.resourcepool.jarpic.model.JsonRpcMultiCallback
Called when response has been received from remote server.

P

param(String, String) - Method in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
params - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
params - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest
 
parseList(JsonNode, Class<T>) - Static method in class io.resourcepool.jarpic.parser.ResponseParser
Parse JsonNode to JsonRpcResponse List with resultClass.
parseList(InputStream, Class<T>) - Static method in class io.resourcepool.jarpic.parser.ResponseParser
Parse InputStream to JsonRpcResponse List with resultClass.
parseOne(JsonNode, Class<T>) - Static method in class io.resourcepool.jarpic.parser.ResponseParser
Parse JsonNode to JsonRpcResponse with resultClass.
parseOne(InputStream, Class<T>) - Static method in class io.resourcepool.jarpic.parser.ResponseParser
Parse InputStream to JsonRpcResponse with resultClass.

R

RequestMapper - Class in io.resourcepool.jarpic.parser
 
RequestMapper() - Constructor for class io.resourcepool.jarpic.parser.RequestMapper
 
ResponseParser - Class in io.resourcepool.jarpic.parser
 
ResponseParser() - Constructor for class io.resourcepool.jarpic.parser.ResponseParser
 
result - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
result(T) - Method in class io.resourcepool.jarpic.model.JsonRpcResponse.Builder
 
result - Variable in class io.resourcepool.jarpic.model.JsonRpcResponse
 

S

send(JsonRpcRequest, Class<T>) - Method in class io.resourcepool.jarpic.client.HttpJsonRpcClient
 
send(JsonRpcRequest, Class, JsonRpcCallback) - Method in class io.resourcepool.jarpic.client.HttpJsonRpcClient
 
send(List<JsonRpcRequest>, Class<T>) - Method in class io.resourcepool.jarpic.client.HttpJsonRpcClient
 
send(List<JsonRpcRequest>, Class, JsonRpcMultiCallback) - Method in class io.resourcepool.jarpic.client.HttpJsonRpcClient
 
send(JsonRpcRequest, Class<T>) - Method in interface io.resourcepool.jarpic.client.JsonRpcClient
Send synchronous Json RPC request to server.
send(JsonRpcRequest, Class, JsonRpcCallback) - Method in interface io.resourcepool.jarpic.client.JsonRpcClient
Send asynchronous Json RPC request to server.
send(List<JsonRpcRequest>, Class<T>) - Method in interface io.resourcepool.jarpic.client.JsonRpcClient
Send Json RPC request array to server.
send(List<JsonRpcRequest>, Class, JsonRpcMultiCallback) - Method in interface io.resourcepool.jarpic.client.JsonRpcClient
Send asynchronous Json RPC request array to server.

T

toString() - Method in class io.resourcepool.jarpic.model.Error
 
toString() - Method in class io.resourcepool.jarpic.model.JsonRpcRequest
 
toString() - Method in class io.resourcepool.jarpic.model.JsonRpcResponse
 
type - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest.Builder
 
type - Variable in class io.resourcepool.jarpic.model.JsonRpcRequest
 

V

valueOf(String) - Static method in enum io.resourcepool.jarpic.model.JsonRpcRequest.Type
Returns the enum constant of this type with the specified name.
values() - Static method in enum io.resourcepool.jarpic.model.JsonRpcRequest.Type
Returns an array containing the constants of this enum type, in the order they are declared.
A B C E G H I J M N O P R S T V 
Skip navigation links

Copyright © 2017. All rights reserved.