![JAR search and dependency download from the Maven repository](/logo.png)
com.silanis.esl.api.model.SignedDocuments Maven / Gradle / Ivy
package com.silanis.esl.api.model;
import java.util.ArrayList;
import java.util.List;
/**
* Created by schoi on 12/11/15.
*/
public class SignedDocuments {
private List documents = new ArrayList();
private String handdrawn = "";
public List getDocuments() {
return documents;
}
public SignedDocuments setDocuments(List documents) {
this.documents = documents;
return this;
}
public SignedDocuments addDocument(Document document) {
documents.add(document);
return this;
}
public String getHanddrawn() {
return handdrawn;
}
public void setHanddrawn(String handdrawn) {
this.handdrawn = handdrawn;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy