
com.cybozu.kintone.client.model.bulkrequest.BulkRequestModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kintone-sdk Show documentation
Show all versions of kintone-sdk Show documentation
kintone Java SDK for REST API
The newest version!
/**
* MIT License
*
* Copyright (c) 2018 Cybozu
* https://github.com/kintone/kintone-java-sdk/blob/master/LICENSE
*/
package com.cybozu.kintone.client.model.bulkrequest;
import java.util.ArrayList;
public class BulkRequestModel {
private ArrayList requests;
/**
* Constructor
*/
public BulkRequestModel() {
this.requests = new ArrayList();
}
/**
* Add bulk Request Item to the bulk request function.
*
* @param bulkRequestItem the bulkRequestItem to add
*/
public void addRequest(BulkRequestItem bulkRequestItem) {
this.requests.add(bulkRequestItem);
}
/**
* Get bulk Request Item to the bulk request function.
* @return requests
*/
public ArrayList getRequests() {
return this.requests;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy