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

com.fincatto.documentofiscal.cte400.classes.nota.CTePAASignature Maven / Gradle / Ivy

There is a newer version: 4.0.75
Show newest version
package com.fincatto.documentofiscal.cte400.classes.nota;

import com.fincatto.documentofiscal.DFBase;
import org.simpleframework.xml.Element;

public class CTePAASignature extends DFBase {
    private static final long serialVersionUID = 3539330266187498701L;

    @Element(name = "SignatureValue")
    private String signatureValue;

    @Element(name = "RSAKeyValue")
    private CTePAARSAKeyValue rsaKeyValue;

    public String getSignatureValue() {
        return signatureValue;
    }

    public void setSignatureValue(String signatureValue) {
        this.signatureValue = signatureValue;
    }

    public CTePAARSAKeyValue getRsaKeyValue() {
        return rsaKeyValue;
    }

    public void setRsaKeyValue(CTePAARSAKeyValue rsaKeyValue) {
        this.rsaKeyValue = rsaKeyValue;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy