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

com.fincatto.documentofiscal.cte300.classes.nota.assinatura.CTeSignature Maven / Gradle / Ivy

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

import org.simpleframework.xml.Element;
import org.simpleframework.xml.Namespace;

import com.fincatto.documentofiscal.DFBase;

@Namespace(reference = "http://www.w3.org/2000/09/xmldsig#")
public class CTeSignature extends DFBase {
    private static final long serialVersionUID = 4276127880405803317L;

    @Element(name = "SignedInfo", required = false)
    private CTeSignedInfo signedInfo;

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

    @Element(name = "KeyInfo", required = false)
    private CTeKeyInfo keyInfo;

    public CTeSignedInfo getSignedInfo() {
        return this.signedInfo;
    }

    public void setSignedInfo(final CTeSignedInfo signedInfo) {
        this.signedInfo = signedInfo;
    }

    public String getSignatureValue() {
        return this.signatureValue;
    }

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

    public CTeKeyInfo getKeyInfo() {
        return this.keyInfo;
    }

    public void setKeyInfo(final CTeKeyInfo keyInfo) {
        this.keyInfo = keyInfo;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy