com.fincatto.documentofiscal.cte400.classes.nota.CTePAASignature Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nfe Show documentation
Show all versions of nfe Show documentation
Biblioteca de comunicacao de nota fiscal eletronica brasileira
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;
}
}