Skip to content

Commit 05e926e

Browse files
Adicionado Ator Interessado
1 parent 9c6783e commit 05e926e

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

src/main/java/br/com/swconsultoria/nfe/AtorInteressado.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import br.com.swconsultoria.nfe.dom.enuns.ServicosEnum;
66
import br.com.swconsultoria.nfe.exception.NfeException;
77
import br.com.swconsultoria.nfe.schema.envEventoAtorInteressado.TEnvEvento;
8-
import br.com.swconsultoria.nfe.schema.envEventoAtorInteressado.TRetEnvEvento;
8+
import br.com.swconsultoria.nfe.schema.retEnvEventoAtorInteressado.TRetEnvEvento;
99
import br.com.swconsultoria.nfe.util.XmlNfeUtil;
1010

1111
import javax.xml.bind.JAXBException;

src/main/java/br/com/swconsultoria/nfe/schema/envEventoAtorInteressado/ObjectFactory.java

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public class ObjectFactory {
2727
private final static QName _Signature_QNAME = new QName("http://www.w3.org/2000/09/xmldsig#", "Signature");
2828
private final static QName _EnvEvento_QNAME = new QName("http://www.portalfiscal.inf.br/nfe", "envEvento");
2929

30+
private final static QName _TProcEvento_QNAME = new QName("http://www.portalfiscal.inf.br/nfe", "procEvento");
31+
3032
/**
3133
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: br.com.swconsultoria.nfe.schema.envEventoAtorInteressado
3234
*
@@ -212,4 +214,9 @@ public JAXBElement<TEnvEvento> createEnvEvento(TEnvEvento value) {
212214
return new JAXBElement<TEnvEvento>(_EnvEvento_QNAME, TEnvEvento.class, null, value);
213215
}
214216

217+
@XmlElementDecl(namespace = "http://www.portalfiscal.inf.br/nfe", name = "procEvento")
218+
public JAXBElement<TProcEvento> createTProcEvento(TProcEvento value) {
219+
return new JAXBElement<TProcEvento>(_TProcEvento_QNAME,TProcEvento.class, null, value);
220+
}
221+
215222
}

0 commit comments

Comments
 (0)