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

com.silanis.esl.api.model.SignedDocuments Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
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