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

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

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

public class GeometryAttachmentRequest {
	private String docId;
	private String attName;

	public GeometryAttachmentRequest(){
		
	}

	public GeometryAttachmentRequest(String docId, String attName){
		this.docId = docId;
		this.attName = attName;
	}

	public String getDocId() {
		return docId;
	}
	public void setDocId(String docId) {
		this.docId = docId;
	}

	public String getAttName() {
		return attName;
	}
	public void setAttName(String attName) {
		this.attName = attName;
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy