com.fincatto.documentofiscal.nfe400.classes.nota.assinatura.NFKeyInfo 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.nfe400.classes.nota.assinatura;
import org.simpleframework.xml.Element;
import com.fincatto.documentofiscal.DFBase;
public class NFKeyInfo extends DFBase {
private static final long serialVersionUID = 7949034334524924221L;
@Element(name = "X509Data", required = false)
private NFX509Data data;
public NFX509Data getData() {
return this.data;
}
public void setData(final NFX509Data data) {
this.data = data;
}
}