All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.cybozu.kintone.client.model.bulkrequest.BulkRequestModel Maven / Gradle / Ivy

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