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

ca.carleton.gcrc.couch.simplifiedGeometry.SimplifiedGeometryRequest Maven / Gradle / Ivy

There is a newer version: 2.2.7
Show newest version
package ca.carleton.gcrc.couch.simplifiedGeometry;

import java.util.List;
import java.util.Vector;

public class SimplifiedGeometryRequest {

	private List requests = 
		new Vector();
	private Long sizeLimit = null;
	private Integer timeLimit = null;
	
	public SimplifiedGeometryRequest(){
		
	}

	public List getRequests() {
		return requests;
	}

	public void addRequest(String docId, String attName) {
		this.requests.add(
			new GeometryAttachmentRequest(docId, attName)
		);
	}

	public Long getSizeLimit() {
		return sizeLimit;
	}

	public void setSizeLimit(Long sizeLimit) {
		this.sizeLimit = sizeLimit;
	}

	public Integer getTimeLimit() {
		return timeLimit;
	}

	public void setTimeLimit(Integer timeLimit) {
		this.timeLimit = timeLimit;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy