com.cleeng.api.domain.BatchRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cleeng-java-sdk Show documentation
Show all versions of cleeng-java-sdk Show documentation
When you are building your website or application with Java, you can use the Cleeng Java SDK. It simplifies the use of the Cleeng API as it handles user login and content access, and deals with all JSON-RPC specific code.
package com.cleeng.api.domain;
import org.jsonrpc.JSONRPCMessage;
import org.jsonrpc.JSONRPCRequest;
import java.util.ArrayList;
import java.util.List;
public class BatchRequest {
private List requests;
private int count = 0;
public BatchRequest() {
this.requests = new ArrayList();
}
public BatchRequest(List requests) {
this.requests = requests;
}
public void addRequest(JSONRPCRequest request) {
request.id = Integer.toString(this.count);
this.requests.add(request);
this.count++;
}
public List getRequests() {
return this.requests;
}
}