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

com.lacunasoftware.restpkicore.SignatureSessionDocumentToSign Maven / Gradle / Ivy

There is a newer version: 1.1.4
Show newest version
package com.lacunasoftware.restpkicore;

import java.util.List;
import java.util.Map;
import java.util.UUID;

public class SignatureSessionDocumentToSign {

    private UUID id;
    private FileReference file;
    private Map> metadata;
    private String documentKey;
    private SignatureTypes signatureType;

    public UUID getId() { return id; }
    public void setId(UUID id) { this.id = id; }

    public FileReference getFile() { return file; }
    public void setFile(FileReference file) { this.file = file; }

    public Map> getMetadata() { return metadata; }
    public void setMetadata(Map> metadata) { this.metadata = metadata; }

    public String getDocumentKey() { return documentKey; }
    public void setDocumentKey(String documentKey) { this.documentKey = documentKey; }

    public SignatureTypes getSignatureType() { return signatureType; }
    public void setSignatureType(SignatureTypes signatureType) { this.signatureType = signatureType; }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy