com.fincatto.documentofiscal.nfe310.classes.nota.assinatura.NFSignature 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.nfe310.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 NFSignature extends DFBase {
private static final long serialVersionUID = 4057860940440076358L;
@Element(name = "SignedInfo", required = false)
private NFSignedInfo signedInfo;
@Element(name = "SignatureValue", required = false)
private String signatureValue;
@Element(name = "KeyInfo", required = false)
private NFKeyInfo keyInfo;
public NFSignedInfo getSignedInfo() {
return this.signedInfo;
}
public void setSignedInfo(final NFSignedInfo signedInfo) {
this.signedInfo = signedInfo;
}
public String getSignatureValue() {
return this.signatureValue;
}
public void setSignatureValue(final String signatureValue) {
this.signatureValue = signatureValue;
}
public NFKeyInfo getKeyInfo() {
return this.keyInfo;
}
public void setKeyInfo(final NFKeyInfo keyInfo) {
this.keyInfo = keyInfo;
}
}