Compare commits
7 Commits
20240312_1
...
feature/SD
| Author | SHA1 | Date | |
|---|---|---|---|
| 21347036cc | |||
| 67170a87ca | |||
| cd042fc248 | |||
| eb0b047994 | |||
| ac71a4a92a | |||
| 3821c88000 | |||
| a5ef9aebee |
3
.gitattributes
vendored
3
.gitattributes
vendored
@@ -135,10 +135,13 @@ ems-contabil/src/main/java/it/integry/ems/contabil/service/ContabilService.java
|
||||
ems-contabil/src/main/java/it/integry/ems/contabil/service/DistinteIncassiDTO.java -text
|
||||
ems-contabil/src/main/java/it/integry/ems/contabil/type/ContabilImportFormat.java -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIBdyPaymentRequest.00.04.00.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIBdyPaymentRequest.00.04.01.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIHdrSrv.001.07.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIHdrTrt.001.07.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIPaymentRequest.00.04.00.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIPaymentRequestMsg.00.04.00.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIPaymentRequest.00.04.01.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBIPaymentRequestMsg.00.04.01.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/CBISgnInf.001.04.xsd -text
|
||||
ems-contabil/src/main/resources/sepa/xsd/binding.jxb -text
|
||||
ems-contabil/target/classes/it/integry/ems/contabil/it.integry.core.controller/ContabilController.class -text
|
||||
|
||||
@@ -57,6 +57,8 @@ public class ContabilController {
|
||||
private RequestDataDTO requestDataDTO;
|
||||
@Autowired
|
||||
private AmmortamentiService ammortamentiService;
|
||||
@Autowired
|
||||
private SEPAService SEPAService;
|
||||
|
||||
@Autowired
|
||||
private DulciarSincronizzazione dulciarSincronizzazione;
|
||||
@@ -94,7 +96,7 @@ public class ContabilController {
|
||||
@RequestParam("dataDist") String dataDist, @RequestParam("rifDist") Integer rifDist) {
|
||||
ServiceRestResponse resp = null;
|
||||
try {
|
||||
resp = contabilService.getSepaXml(UtilityString.parseDate(dataDist), rifDist);
|
||||
resp =SEPAService.getSepaXml(UtilityString.parseDate(dataDist), rifDist);
|
||||
} catch (Exception e) {
|
||||
logger.error(request.getRequestURI(), e);
|
||||
resp = new ServiceRestResponse(EsitoType.KO, configuration, e);
|
||||
@@ -110,7 +112,7 @@ public class ContabilController {
|
||||
@RequestParam("dataDist") String dataDist, @RequestParam("rifDist") Integer rifDist) {
|
||||
ServiceRestResponse resp;
|
||||
try {
|
||||
resp = contabilService.getSepaSDDXml(UtilityString.parseDate(dataDist), rifDist);
|
||||
resp = SEPAService.getSepaSDDXml(UtilityString.parseDate(dataDist), rifDist);
|
||||
} catch (Exception e) {
|
||||
logger.error(request.getRequestURI(), e);
|
||||
resp = new ServiceRestResponse(EsitoType.KO, configuration, e);
|
||||
|
||||
@@ -0,0 +1,88 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlAttribute;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.bind.annotation.XmlValue;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per ActiveOrHistoricCurrencyAndAmount complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ActiveOrHistoricCurrencyAndAmount">
|
||||
* <simpleContent>
|
||||
* <extension base="<urn:CBI:xsd:CBIPaymentRequest.00.04.01>CBIActiveOrHistoricCurrencyAndAmount_SimpleType">
|
||||
* <attribute name="Ccy" use="required" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyCode" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ActiveOrHistoricCurrencyAndAmount", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ActiveOrHistoricCurrencyAndAmount {
|
||||
|
||||
@XmlValue
|
||||
protected BigDecimal value;
|
||||
@XmlAttribute(name = "Ccy", required = true)
|
||||
protected String ccy;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà value.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getValue() {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà value.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setValue(BigDecimal value) {
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ccy.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCcy() {
|
||||
return ccy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ccy.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCcy(String value) {
|
||||
this.ccy = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per AddressType2Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="AddressType2Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="ADDR"/>
|
||||
* <enumeration value="PBOX"/>
|
||||
* <enumeration value="HOME"/>
|
||||
* <enumeration value="BIZZ"/>
|
||||
* <enumeration value="MLTO"/>
|
||||
* <enumeration value="DLVY"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "AddressType2Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum AddressType2Code {
|
||||
|
||||
ADDR,
|
||||
PBOX,
|
||||
HOME,
|
||||
BIZZ,
|
||||
MLTO,
|
||||
DLVY;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static AddressType2Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per AddressType3Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AddressType3Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AddressType2Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}GenericIdentification30"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressType3Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class AddressType3Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected AddressType2Code cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected GenericIdentification30 prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AddressType2Code }
|
||||
*
|
||||
*/
|
||||
public AddressType2Code getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AddressType2Code }
|
||||
*
|
||||
*/
|
||||
public void setCd(AddressType2Code value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GenericIdentification30 }
|
||||
*
|
||||
*/
|
||||
public GenericIdentification30 getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GenericIdentification30 }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(GenericIdentification30 value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIAccountIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIAccountIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="IBAN" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}IBAN2007Identifier"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIAccountIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"iban"
|
||||
})
|
||||
public class CBIAccountIdentification1 {
|
||||
|
||||
@XmlElement(name = "IBAN", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String iban;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà iban.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIBAN() {
|
||||
return iban;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà iban.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIBAN(String value) {
|
||||
this.iban = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIAmountType1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIAmountType1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="InstdAmt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIAmountType1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"instdAmt"
|
||||
})
|
||||
public class CBIAmountType1 {
|
||||
|
||||
@XmlElement(name = "InstdAmt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà instdAmt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount getInstdAmt() {
|
||||
return instdAmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà instdAmt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public void setInstdAmt(ActiveOrHistoricCurrencyAndAmount value) {
|
||||
this.instdAmt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- edited with XMLSpy v2013 rel. 2 (x64) (http://www.altova.com) by Ivana Gargiulo (CONSORZIO CUSTOMER TO BUSINESS INTERACTION - CBI) -->
|
||||
<!-- Entrata in vigore: 17/03/2024 -->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:PMRQ="urn:CBI:xsd:CBIPaymentRequest.00.04.01" xmlns:SGNT="urn:CBI:xsd:CBISgnInf.001.04" xmlns="urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01" targetNamespace="urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01" elementFormDefault="qualified">
|
||||
<!-- Namespace import -->
|
||||
<xs:import namespace="urn:CBI:xsd:CBIPaymentRequest.00.04.01" schemaLocation="CBIPaymentRequest.00.04.01.xsd"/>
|
||||
<xs:import namespace="urn:CBI:xsd:CBISgnInf.001.04" schemaLocation="CBISgnInf.001.04.xsd"/>
|
||||
<xs:element name="CBIBdyPaymentRequest" type="CBIBdyPaymentRequest.00.04.01"/>
|
||||
<!-- Message Body structure definition -->
|
||||
<xs:complexType name="CBIBdyPaymentRequest.00.04.01">
|
||||
<xs:sequence>
|
||||
<xs:element name="CBIEnvelPaymentRequest" type="CBIEnvelPaymentRequest.00.04.01" maxOccurs="unbounded"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<!-- Envel Payment Status Report structure definition -->
|
||||
<xs:complexType name="CBIEnvelPaymentRequest.00.04.01">
|
||||
<xs:choice>
|
||||
<xs:element name="CBIPaymentRequest" type="PMRQ:CBIPaymentRequest.00.04.01"/>
|
||||
<xs:element name="CBISgnInf" type="SGNT:CBISgnInf.001.04"/>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,73 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIBdyPaymentRequest.00.04.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBdyPaymentRequest.00.04.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CBIEnvelPaymentRequest" type="{urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01}CBIEnvelPaymentRequest.00.04.01" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBdyPaymentRequest.00.04.01", namespace = "urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01", propOrder = {
|
||||
"cbiEnvelPaymentRequest"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBIBdyPaymentRequest000401 {
|
||||
|
||||
@XmlElement(name = "CBIEnvelPaymentRequest", namespace = "urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected List<CBIEnvelPaymentRequest000401> cbiEnvelPaymentRequest;
|
||||
|
||||
/**
|
||||
* Gets the value of the cbiEnvelPaymentRequest property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the cbiEnvelPaymentRequest property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCBIEnvelPaymentRequest().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIEnvelPaymentRequest000401 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public List<CBIEnvelPaymentRequest000401> getCBIEnvelPaymentRequest() {
|
||||
if (cbiEnvelPaymentRequest == null) {
|
||||
cbiEnvelPaymentRequest = new ArrayList<CBIEnvelPaymentRequest000401>();
|
||||
}
|
||||
return this.cbiEnvelPaymentRequest;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIBranchAndFinancialInstitutionIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBranchAndFinancialInstitutionIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FinInstnId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIFinancialInstitutionIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification1 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIFinancialInstitutionIdentification1 finInstnId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification1 getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(CBIFinancialInstitutionIdentification1 value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIBranchAndFinancialInstitutionIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBranchAndFinancialInstitutionIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FinInstnId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIFinancialInstitutionIdentification3"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification2 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIFinancialInstitutionIdentification3 finInstnId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification3 getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(CBIFinancialInstitutionIdentification3 value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIBranchAndFinancialInstitutionIdentification3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBranchAndFinancialInstitutionIdentification3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FinInstnId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIFinancialInstitutionIdentification2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification3 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIFinancialInstitutionIdentification2 finInstnId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification2 getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(CBIFinancialInstitutionIdentification2 value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBICashAccount1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICashAccount1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIAccountIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICashAccount1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBICashAccount1 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIAccountIdentification1 id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification1 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIAccountIdentification1 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBICashAccount2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICashAccount2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIAccountIdentification1"/>
|
||||
* <element name="Tp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CashAccountType2Choice" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICashAccount2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"tp"
|
||||
})
|
||||
public class CBICashAccount2 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIAccountIdentification1 id;
|
||||
@XmlElement(name = "Tp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CashAccountType2Choice tp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification1 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIAccountIdentification1 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CashAccountType2Choice }
|
||||
*
|
||||
*/
|
||||
public CashAccountType2Choice getTp() {
|
||||
return tp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CashAccountType2Choice }
|
||||
*
|
||||
*/
|
||||
public void setTp(CashAccountType2Choice value) {
|
||||
this.tp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBICashAccount3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICashAccount3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIAccountIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICashAccount3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBICashAccount3 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIAccountIdentification1 id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification1 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIAccountIdentification1 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIChargeBearerTypeCode.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIChargeBearerTypeCode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="SLEV"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIChargeBearerTypeCode", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBIChargeBearerTypeCode {
|
||||
|
||||
SLEV;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIChargeBearerTypeCode fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBICheque1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICheque1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ChqTp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIChequeType1Code" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICheque1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"chqTp"
|
||||
})
|
||||
public class CBICheque1 {
|
||||
|
||||
@XmlElement(name = "ChqTp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIChequeType1Code chqTp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chqTp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIChequeType1Code }
|
||||
*
|
||||
*/
|
||||
public CBIChequeType1Code getChqTp() {
|
||||
return chqTp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chqTp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIChequeType1Code }
|
||||
*
|
||||
*/
|
||||
public void setChqTp(CBIChequeType1Code value) {
|
||||
this.chqTp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIChequeType1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIChequeType1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="CCCH"/>
|
||||
* <enumeration value="BCHQ"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIChequeType1Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBIChequeType1Code {
|
||||
|
||||
CCCH,
|
||||
BCHQ;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIChequeType1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIClearingSystemMemberIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIClearingSystemMemberIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MmbId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIClearingSystemMemberIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"mmbId"
|
||||
})
|
||||
public class CBIClearingSystemMemberIdentification1 {
|
||||
|
||||
@XmlElement(name = "MmbId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String mmbId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mmbId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMmbId() {
|
||||
return mmbId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mmbId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMmbId(String value) {
|
||||
this.mmbId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,529 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBICreditTransferTransactionInformation complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICreditTransferTransactionInformation">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PmtId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PaymentIdentification1"/>
|
||||
* <element name="PmtTpInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPaymentTypeInformation2" minOccurs="0"/>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIAmountType1"/>
|
||||
* <element name="ChqInstr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBICheque1" minOccurs="0"/>
|
||||
* <element name="UltmtDbtr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification2" minOccurs="0"/>
|
||||
* <element name="SrvInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBISrvInf1" minOccurs="0"/>
|
||||
* <element name="CdtrAgt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIBranchAndFinancialInstitutionIdentification3" minOccurs="0"/>
|
||||
* <element name="Cdtr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification3"/>
|
||||
* <element name="CdtrAcct" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBICashAccount3" minOccurs="0"/>
|
||||
* <element name="UltmtCdtr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification3" minOccurs="0"/>
|
||||
* <element name="InstrForCdtrAgt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}InstructionForCreditorAgent1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="DestCdtrRsp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification5" minOccurs="0"/>
|
||||
* <element name="Purp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Purpose1Choice" minOccurs="0"/>
|
||||
* <element name="RgltryRptg" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIRegulatoryReporting1" maxOccurs="3" minOccurs="0"/>
|
||||
* <element name="Tax" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}TaxInformation8" minOccurs="0"/>
|
||||
* <element name="RltdRmtInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIRemittanceLocation1" maxOccurs="10" minOccurs="0"/>
|
||||
* <element name="RmtInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}RemittanceInformation16" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICreditTransferTransactionInformation", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"pmtId",
|
||||
"pmtTpInf",
|
||||
"amt",
|
||||
"chqInstr",
|
||||
"ultmtDbtr",
|
||||
"srvInf",
|
||||
"cdtrAgt",
|
||||
"cdtr",
|
||||
"cdtrAcct",
|
||||
"ultmtCdtr",
|
||||
"instrForCdtrAgt",
|
||||
"destCdtrRsp",
|
||||
"purp",
|
||||
"rgltryRptg",
|
||||
"tax",
|
||||
"rltdRmtInf",
|
||||
"rmtInf"
|
||||
})
|
||||
public class CBICreditTransferTransactionInformation {
|
||||
|
||||
@XmlElement(name = "PmtId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected PaymentIdentification1 pmtId;
|
||||
@XmlElement(name = "PmtTpInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPaymentTypeInformation2 pmtTpInf;
|
||||
@XmlElement(name = "Amt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIAmountType1 amt;
|
||||
@XmlElement(name = "ChqInstr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBICheque1 chqInstr;
|
||||
@XmlElement(name = "UltmtDbtr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPartyIdentification2 ultmtDbtr;
|
||||
@XmlElement(name = "SrvInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBISrvInf1 srvInf;
|
||||
@XmlElement(name = "CdtrAgt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIBranchAndFinancialInstitutionIdentification3 cdtrAgt;
|
||||
@XmlElement(name = "Cdtr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIPartyIdentification3 cdtr;
|
||||
@XmlElement(name = "CdtrAcct", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBICashAccount3 cdtrAcct;
|
||||
@XmlElement(name = "UltmtCdtr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPartyIdentification3 ultmtCdtr;
|
||||
@XmlElement(name = "InstrForCdtrAgt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<InstructionForCreditorAgent1> instrForCdtrAgt;
|
||||
@XmlElement(name = "DestCdtrRsp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPartyIdentification5 destCdtrRsp;
|
||||
@XmlElement(name = "Purp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected Purpose1Choice purp;
|
||||
@XmlElement(name = "RgltryRptg", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<CBIRegulatoryReporting1> rgltryRptg;
|
||||
@XmlElement(name = "Tax", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected TaxInformation8 tax;
|
||||
@XmlElement(name = "RltdRmtInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<CBIRemittanceLocation1> rltdRmtInf;
|
||||
@XmlElement(name = "RmtInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected RemittanceInformation16 rmtInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PaymentIdentification1 }
|
||||
*
|
||||
*/
|
||||
public PaymentIdentification1 getPmtId() {
|
||||
return pmtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PaymentIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setPmtId(PaymentIdentification1 value) {
|
||||
this.pmtId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtTpInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPaymentTypeInformation2 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentTypeInformation2 getPmtTpInf() {
|
||||
return pmtTpInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtTpInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPaymentTypeInformation2 }
|
||||
*
|
||||
*/
|
||||
public void setPmtTpInf(CBIPaymentTypeInformation2 value) {
|
||||
this.pmtTpInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAmountType1 }
|
||||
*
|
||||
*/
|
||||
public CBIAmountType1 getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAmountType1 }
|
||||
*
|
||||
*/
|
||||
public void setAmt(CBIAmountType1 value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chqInstr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBICheque1 }
|
||||
*
|
||||
*/
|
||||
public CBICheque1 getChqInstr() {
|
||||
return chqInstr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chqInstr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICheque1 }
|
||||
*
|
||||
*/
|
||||
public void setChqInstr(CBICheque1 value) {
|
||||
this.chqInstr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification2 getUltmtDbtr() {
|
||||
return ultmtDbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setUltmtDbtr(CBIPartyIdentification2 value) {
|
||||
this.ultmtDbtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISrvInf1 }
|
||||
*
|
||||
*/
|
||||
public CBISrvInf1 getSrvInf() {
|
||||
return srvInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISrvInf1 }
|
||||
*
|
||||
*/
|
||||
public void setSrvInf(CBISrvInf1 value) {
|
||||
this.srvInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification3 getCdtrAgt() {
|
||||
return cdtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setCdtrAgt(CBIBranchAndFinancialInstitutionIdentification3 value) {
|
||||
this.cdtrAgt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification3 getCdtr() {
|
||||
return cdtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setCdtr(CBIPartyIdentification3 value) {
|
||||
this.cdtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdtrAcct.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBICashAccount3 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount3 getCdtrAcct() {
|
||||
return cdtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount3 }
|
||||
*
|
||||
*/
|
||||
public void setCdtrAcct(CBICashAccount3 value) {
|
||||
this.cdtrAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ultmtCdtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification3 getUltmtCdtr() {
|
||||
return ultmtCdtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ultmtCdtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setUltmtCdtr(CBIPartyIdentification3 value) {
|
||||
this.ultmtCdtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the instrForCdtrAgt property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the instrForCdtrAgt property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getInstrForCdtrAgt().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link InstructionForCreditorAgent1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<InstructionForCreditorAgent1> getInstrForCdtrAgt() {
|
||||
if (instrForCdtrAgt == null) {
|
||||
instrForCdtrAgt = new ArrayList<InstructionForCreditorAgent1>();
|
||||
}
|
||||
return this.instrForCdtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà destCdtrRsp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification5 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification5 getDestCdtrRsp() {
|
||||
return destCdtrRsp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà destCdtrRsp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification5 }
|
||||
*
|
||||
*/
|
||||
public void setDestCdtrRsp(CBIPartyIdentification5 value) {
|
||||
this.destCdtrRsp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà purp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Purpose1Choice }
|
||||
*
|
||||
*/
|
||||
public Purpose1Choice getPurp() {
|
||||
return purp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà purp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Purpose1Choice }
|
||||
*
|
||||
*/
|
||||
public void setPurp(Purpose1Choice value) {
|
||||
this.purp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the rgltryRptg property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the rgltryRptg property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRgltryRptg().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIRegulatoryReporting1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIRegulatoryReporting1> getRgltryRptg() {
|
||||
if (rgltryRptg == null) {
|
||||
rgltryRptg = new ArrayList<CBIRegulatoryReporting1>();
|
||||
}
|
||||
return this.rgltryRptg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tax.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TaxInformation8 }
|
||||
*
|
||||
*/
|
||||
public TaxInformation8 getTax() {
|
||||
return tax;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tax.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TaxInformation8 }
|
||||
*
|
||||
*/
|
||||
public void setTax(TaxInformation8 value) {
|
||||
this.tax = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the rltdRmtInf property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the rltdRmtInf property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRltdRmtInf().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIRemittanceLocation1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIRemittanceLocation1> getRltdRmtInf() {
|
||||
if (rltdRmtInf == null) {
|
||||
rltdRmtInf = new ArrayList<CBIRemittanceLocation1>();
|
||||
}
|
||||
return this.rltdRmtInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rmtInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RemittanceInformation16 }
|
||||
*
|
||||
*/
|
||||
public RemittanceInformation16 getRmtInf() {
|
||||
return rmtInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rmtInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RemittanceInformation16 }
|
||||
*
|
||||
*/
|
||||
public void setRmtInf(RemittanceInformation16 value) {
|
||||
this.rmtInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIEnvelPaymentRequest.00.04.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIEnvelPaymentRequest.00.04.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="CBIPaymentRequest" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPaymentRequest.00.04.01"/>
|
||||
* <element name="CBISgnInf" type="{urn:CBI:xsd:CBISgnInf.001.04}CBISgnInf.001.04"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIEnvelPaymentRequest.00.04.01", namespace = "urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01", propOrder = {
|
||||
"cbiPaymentRequest",
|
||||
"cbiSgnInf"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBIEnvelPaymentRequest000401 {
|
||||
|
||||
@XmlElement(name = "CBIPaymentRequest", namespace = "urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CBIPaymentRequest000401 cbiPaymentRequest;
|
||||
@XmlElement(name = "CBISgnInf", namespace = "urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CBISgnInf00104 cbiSgnInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiPaymentRequest.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPaymentRequest000401 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CBIPaymentRequest000401 getCBIPaymentRequest() {
|
||||
return cbiPaymentRequest;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiPaymentRequest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPaymentRequest000401 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCBIPaymentRequest(CBIPaymentRequest000401 value) {
|
||||
this.cbiPaymentRequest = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CBISgnInf00104 getCBISgnInf() {
|
||||
return cbiSgnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCBISgnInf(CBISgnInf00104 value) {
|
||||
this.cbiSgnInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIFinancialInstitutionIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ClrSysMmbId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIClearingSystemMemberIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"clrSysMmbId"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification1 {
|
||||
|
||||
@XmlElement(name = "ClrSysMmbId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIClearingSystemMemberIdentification1 clrSysMmbId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà clrSysMmbId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIClearingSystemMemberIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIClearingSystemMemberIdentification1 getClrSysMmbId() {
|
||||
return clrSysMmbId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà clrSysMmbId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIClearingSystemMemberIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setClrSysMmbId(CBIClearingSystemMemberIdentification1 value) {
|
||||
this.clrSysMmbId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIFinancialInstitutionIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BICFI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}BICFIDec2014Identifier"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"bicfi"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification2 {
|
||||
|
||||
@XmlElement(name = "BICFI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String bicfi;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà bicfi.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBICFI() {
|
||||
return bicfi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà bicfi.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBICFI(String value) {
|
||||
this.bicfi = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIFinancialInstitutionIdentification3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BICFI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}BICFIDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="ClrSysMmbId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIClearingSystemMemberIdentification1"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}LEIIdentifier" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"bicfi",
|
||||
"clrSysMmbId",
|
||||
"lei"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification3 {
|
||||
|
||||
@XmlElement(name = "BICFI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String bicfi;
|
||||
@XmlElement(name = "ClrSysMmbId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIClearingSystemMemberIdentification1 clrSysMmbId;
|
||||
@XmlElement(name = "LEI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String lei;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà bicfi.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBICFI() {
|
||||
return bicfi;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà bicfi.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBICFI(String value) {
|
||||
this.bicfi = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà clrSysMmbId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIClearingSystemMemberIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIClearingSystemMemberIdentification1 getClrSysMmbId() {
|
||||
return clrSysMmbId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà clrSysMmbId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIClearingSystemMemberIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setClrSysMmbId(CBIClearingSystemMemberIdentification1 value) {
|
||||
this.clrSysMmbId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lei.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEI() {
|
||||
return lei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lei.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEI(String value) {
|
||||
this.lei = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIGenericIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIGenericIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGenericIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"issr"
|
||||
})
|
||||
public class CBIGenericIdentification1 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIGenericIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIGenericIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGenericIdentification2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"issr"
|
||||
})
|
||||
public class CBIGenericIdentification2 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,206 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.math.BigDecimal;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIGroupHeader complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIGroupHeader">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MsgId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="CreDtTm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODateTime"/>
|
||||
* <element name="NbOfTxs" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max15NumericText"/>
|
||||
* <element name="CtrlSum" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIDecimalNumber"/>
|
||||
* <element name="InitgPty" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification1"/>
|
||||
* <element name="FwdgAgt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIBranchAndFinancialInstitutionIdentification1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGroupHeader", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"msgId",
|
||||
"creDtTm",
|
||||
"nbOfTxs",
|
||||
"ctrlSum",
|
||||
"initgPty",
|
||||
"fwdgAgt"
|
||||
})
|
||||
public class CBIGroupHeader {
|
||||
|
||||
@XmlElement(name = "MsgId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String msgId;
|
||||
@XmlElement(name = "CreDtTm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creDtTm;
|
||||
@XmlElement(name = "NbOfTxs", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String nbOfTxs;
|
||||
@XmlElement(name = "CtrlSum", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected BigDecimal ctrlSum;
|
||||
@XmlElement(name = "InitgPty", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIPartyIdentification1 initgPty;
|
||||
@XmlElement(name = "FwdgAgt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIBranchAndFinancialInstitutionIdentification1 fwdgAgt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà msgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMsgId() {
|
||||
return msgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà msgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMsgId(String value) {
|
||||
this.msgId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà creDtTm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getCreDtTm() {
|
||||
return creDtTm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà creDtTm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setCreDtTm(XMLGregorianCalendar value) {
|
||||
this.creDtTm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nbOfTxs.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNbOfTxs() {
|
||||
return nbOfTxs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nbOfTxs.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNbOfTxs(String value) {
|
||||
this.nbOfTxs = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctrlSum.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getCtrlSum() {
|
||||
return ctrlSum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctrlSum.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setCtrlSum(BigDecimal value) {
|
||||
this.ctrlSum = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà initgPty.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification1 getInitgPty() {
|
||||
return initgPty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà initgPty.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setInitgPty(CBIPartyIdentification1 value) {
|
||||
this.initgPty = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà fwdgAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification1 getFwdgAgt() {
|
||||
return fwdgAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà fwdgAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setFwdgAgt(CBIBranchAndFinancialInstitutionIdentification1 value) {
|
||||
this.fwdgAgt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,191 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIHdrSrv.001.07 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIHdrSrv.001.07">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SrvInfo" type="{urn:CBI:xsd:CBIHdrSrv.001.07}ServiceInformation"/>
|
||||
* <element name="Sender" type="{urn:CBI:xsd:CBIHdrSrv.001.07}SenderInformation"/>
|
||||
* <element name="Receiver" type="{urn:CBI:xsd:CBIHdrSrv.001.07}ReceiverInformation"/>
|
||||
* <element name="DiagInfo" type="{urn:CBI:xsd:CBIHdrSrv.001.07}DiagnosticInformation"/>
|
||||
* <element name="CongrInfo" type="{urn:CBI:xsd:CBIHdrSrv.001.07}CongruencyInformation"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIHdrSrv.001.07", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", propOrder = {
|
||||
"srvInfo",
|
||||
"sender",
|
||||
"receiver",
|
||||
"diagInfo",
|
||||
"congrInfo"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBIHdrSrv00107 {
|
||||
|
||||
@XmlElement(name = "SrvInfo", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected ServiceInformation srvInfo;
|
||||
@XmlElement(name = "Sender", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected SenderInformation sender;
|
||||
@XmlElement(name = "Receiver", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected ReceiverInformation receiver;
|
||||
@XmlElement(name = "DiagInfo", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected DiagnosticInformation diagInfo;
|
||||
@XmlElement(name = "CongrInfo", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CongruencyInformation congrInfo;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ServiceInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public ServiceInformation getSrvInfo() {
|
||||
return srvInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ServiceInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSrvInfo(ServiceInformation value) {
|
||||
this.srvInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sender.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SenderInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public SenderInformation getSender() {
|
||||
return sender;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sender.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SenderInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSender(SenderInformation value) {
|
||||
this.sender = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà receiver.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ReceiverInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public ReceiverInformation getReceiver() {
|
||||
return receiver;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà receiver.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ReceiverInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setReceiver(ReceiverInformation value) {
|
||||
this.receiver = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà diagInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DiagnosticInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public DiagnosticInformation getDiagInfo() {
|
||||
return diagInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà diagInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DiagnosticInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setDiagInfo(DiagnosticInformation value) {
|
||||
this.diagInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà congrInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CongruencyInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CongruencyInformation getCongrInfo() {
|
||||
return congrInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà congrInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CongruencyInformation }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCongrInfo(CongruencyInformation value) {
|
||||
this.congrInfo = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,226 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIHdrTrt.001.07 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIHdrTrt.001.07">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="IdCBISndrf" type="{urn:CBI:xsd:CBIHdrTrt.001.07}CBIIdentifier"/>
|
||||
* <element name="IdCBIRcvrf" type="{urn:CBI:xsd:CBIHdrTrt.001.07}CBIIdentifier"/>
|
||||
* <element name="SrvNm" type="{urn:CBI:xsd:CBIHdrTrt.001.07}ServiceName"/>
|
||||
* <element name="IdMsgTrt" type="{urn:CBI:xsd:CBIHdrTrt.001.07}IdMsgTrt1"/>
|
||||
* <element name="XMLCrtDt" type="{urn:CBI:xsd:CBIHdrTrt.001.07}ISODateTime"/>
|
||||
* <element name="RtrnAddrl" type="{urn:CBI:xsd:CBIHdrTrt.001.07}RtrnAddrl1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIHdrTrt.001.07", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", propOrder = {
|
||||
"idCBISndrf",
|
||||
"idCBIRcvrf",
|
||||
"srvNm",
|
||||
"idMsgTrt",
|
||||
"xmlCrtDt",
|
||||
"rtrnAddrl"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBIHdrTrt00107 {
|
||||
|
||||
@XmlElement(name = "IdCBISndrf", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String idCBISndrf;
|
||||
@XmlElement(name = "IdCBIRcvrf", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String idCBIRcvrf;
|
||||
@XmlElement(name = "SrvNm", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected ServiceName srvNm;
|
||||
@XmlElement(name = "IdMsgTrt", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String idMsgTrt;
|
||||
@XmlElement(name = "XMLCrtDt", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected XMLGregorianCalendar xmlCrtDt;
|
||||
@XmlElement(name = "RtrnAddrl", namespace = "urn:CBI:xsd:CBIHdrTrt.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String rtrnAddrl;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idCBISndrf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getIdCBISndrf() {
|
||||
return idCBISndrf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idCBISndrf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setIdCBISndrf(String value) {
|
||||
this.idCBISndrf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idCBIRcvrf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getIdCBIRcvrf() {
|
||||
return idCBIRcvrf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idCBIRcvrf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setIdCBIRcvrf(String value) {
|
||||
this.idCBIRcvrf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ServiceName }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public ServiceName getSrvNm() {
|
||||
return srvNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ServiceName }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSrvNm(ServiceName value) {
|
||||
this.srvNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idMsgTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getIdMsgTrt() {
|
||||
return idMsgTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idMsgTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setIdMsgTrt(String value) {
|
||||
this.idMsgTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà xmlCrtDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public XMLGregorianCalendar getXMLCrtDt() {
|
||||
return xmlCrtDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà xmlCrtDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setXMLCrtDt(XMLGregorianCalendar value) {
|
||||
this.xmlCrtDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rtrnAddrl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getRtrnAddrl() {
|
||||
return rtrnAddrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rtrnAddrl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setRtrnAddrl(String value) {
|
||||
this.rtrnAddrl = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIIdType1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIIdType1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIOrganisationIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIIdType1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"orgId"
|
||||
})
|
||||
public class CBIIdType1 {
|
||||
|
||||
@XmlElement(name = "OrgId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIOrganisationIdentification1 orgId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOrganisationIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification1 getOrgId() {
|
||||
return orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOrganisationIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setOrgId(CBIOrganisationIdentification1 value) {
|
||||
this.orgId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIIdType2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIIdType2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIOrganisationIdentification3"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIIdType2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"orgId"
|
||||
})
|
||||
public class CBIIdType2 {
|
||||
|
||||
@XmlElement(name = "OrgId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIOrganisationIdentification3 orgId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOrganisationIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification3 getOrgId() {
|
||||
return orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOrganisationIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setOrgId(CBIOrganisationIdentification3 value) {
|
||||
this.orgId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIIdType3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIIdType3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIOrganisationIdentification4"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIIdType3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"orgId"
|
||||
})
|
||||
public class CBIIdType3 {
|
||||
|
||||
@XmlElement(name = "OrgId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIOrganisationIdentification4 orgId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOrganisationIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification4 getOrgId() {
|
||||
return orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOrganisationIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setOrgId(CBIOrganisationIdentification4 value) {
|
||||
this.orgId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBILocalInstrument1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBILocalInstrument1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBILocalInstrument1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"prtry"
|
||||
})
|
||||
public class CBILocalInstrument1 {
|
||||
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBILocalInstrument2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBILocalInstrument2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalLocalInstrument1Code"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBILocalInstrument2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd"
|
||||
})
|
||||
public class CBILocalInstrument2 {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String cd;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIOrganisationIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOrganisationIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGenericIdentification1" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification1 {
|
||||
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected List<CBIGenericIdentification1> othr;
|
||||
|
||||
/**
|
||||
* Gets the value of the othr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the othr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOthr().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIGenericIdentification1> getOthr() {
|
||||
if (othr == null) {
|
||||
othr = new ArrayList<CBIGenericIdentification1>();
|
||||
}
|
||||
return this.othr;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIOrganisationIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOrganisationIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AnyBIC" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AnyBICDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGenericIdentification1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"anyBIC",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification2 {
|
||||
|
||||
@XmlElement(name = "AnyBIC", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "LEI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIGenericIdentification1 othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà anyBIC.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAnyBIC() {
|
||||
return anyBIC;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà anyBIC.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAnyBIC(String value) {
|
||||
this.anyBIC = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lei.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEI() {
|
||||
return lei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lei.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEI(String value) {
|
||||
this.lei = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification1 getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setOthr(CBIGenericIdentification1 value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIOrganisationIdentification3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOrganisationIdentification3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AnyBIC" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AnyBICDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGenericIdentification1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"anyBIC",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification3 {
|
||||
|
||||
@XmlElement(name = "AnyBIC", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "LEI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIGenericIdentification1 othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà anyBIC.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAnyBIC() {
|
||||
return anyBIC;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà anyBIC.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAnyBIC(String value) {
|
||||
this.anyBIC = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lei.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEI() {
|
||||
return lei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lei.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEI(String value) {
|
||||
this.lei = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification1 getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setOthr(CBIGenericIdentification1 value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIOrganisationIdentification4 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOrganisationIdentification4">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGenericIdentification2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification4", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification4 {
|
||||
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIGenericIdentification2 othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGenericIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification2 getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGenericIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setOthr(CBIGenericIdentification2 value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIParty1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIParty1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="OrgId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIOrganisationIdentification2"/>
|
||||
* <element name="PrvtId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPersonIdentification1"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIParty1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"orgId",
|
||||
"prvtId"
|
||||
})
|
||||
public class CBIParty1Choice {
|
||||
|
||||
@XmlElement(name = "OrgId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIOrganisationIdentification2 orgId;
|
||||
@XmlElement(name = "PrvtId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPersonIdentification1 prvtId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOrganisationIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification2 getOrgId() {
|
||||
return orgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOrganisationIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setOrgId(CBIOrganisationIdentification2 value) {
|
||||
this.orgId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prvtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPersonIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIPersonIdentification1 getPrvtId() {
|
||||
return prvtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prvtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPersonIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setPrvtId(CBIPersonIdentification1 value) {
|
||||
this.prvtId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPartyIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIIdType1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nm",
|
||||
"id"
|
||||
})
|
||||
public class CBIPartyIdentification1 {
|
||||
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String nm;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIIdType1 id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIIdType1 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType1 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIIdType1 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIIdType1 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPartyIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIIdType2" minOccurs="0"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification2 {
|
||||
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIIdType2 id;
|
||||
@XmlElement(name = "CtryOfRes", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ctryOfRes;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public CBIPostalAddress24 getPstlAdr() {
|
||||
return pstlAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public void setPstlAdr(CBIPostalAddress24 value) {
|
||||
this.pstlAdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIIdType2 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType2 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIIdType2 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIIdType2 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtryOfRes() {
|
||||
return ctryOfRes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtryOfRes(String value) {
|
||||
this.ctryOfRes = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPartyIdentification3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIParty1Choice" minOccurs="0"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification3 {
|
||||
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIParty1Choice id;
|
||||
@XmlElement(name = "CtryOfRes", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ctryOfRes;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public CBIPostalAddress24 getPstlAdr() {
|
||||
return pstlAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public void setPstlAdr(CBIPostalAddress24 value) {
|
||||
this.pstlAdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIParty1Choice }
|
||||
*
|
||||
*/
|
||||
public CBIParty1Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIParty1Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIParty1Choice value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtryOfRes() {
|
||||
return ctryOfRes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtryOfRes(String value) {
|
||||
this.ctryOfRes = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPartyIdentification4 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification4">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIIdType2" minOccurs="0"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification4", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification4 {
|
||||
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIIdType2 id;
|
||||
@XmlElement(name = "CtryOfRes", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ctryOfRes;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public CBIPostalAddress24 getPstlAdr() {
|
||||
return pstlAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public void setPstlAdr(CBIPostalAddress24 value) {
|
||||
this.pstlAdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIIdType2 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType2 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIIdType2 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIIdType2 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtryOfRes() {
|
||||
return ctryOfRes;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctryOfRes.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtryOfRes(String value) {
|
||||
this.ctryOfRes = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPartyIdentification5 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification5">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIIdType3" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification5", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nm",
|
||||
"id"
|
||||
})
|
||||
public class CBIPartyIdentification5 {
|
||||
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIIdType3 id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIIdType3 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType3 getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIIdType3 }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIIdType3 value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,380 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPaymentInstructionInformation complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentInstructionInformation">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PmtInfId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="PmtMtd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PaymentMethod3Code"/>
|
||||
* <element name="BtchBookg" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}BatchBookingIndicator" minOccurs="0"/>
|
||||
* <element name="PmtTpInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPaymentTypeInformation1" minOccurs="0"/>
|
||||
* <element name="ReqdExctnDt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DateAndDateTime2Choice"/>
|
||||
* <element name="Dbtr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification4"/>
|
||||
* <element name="DbtrAcct" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBICashAccount2"/>
|
||||
* <element name="DbtrAgt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIBranchAndFinancialInstitutionIdentification2"/>
|
||||
* <element name="UltmtDbtr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPartyIdentification2" minOccurs="0"/>
|
||||
* <element name="ChrgBr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIChargeBearerTypeCode" minOccurs="0"/>
|
||||
* <element name="ChrgsAcct" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBICashAccount1" minOccurs="0"/>
|
||||
* <element name="CdtTrfTxInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBICreditTransferTransactionInformation" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentInstructionInformation", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"pmtInfId",
|
||||
"pmtMtd",
|
||||
"btchBookg",
|
||||
"pmtTpInf",
|
||||
"reqdExctnDt",
|
||||
"dbtr",
|
||||
"dbtrAcct",
|
||||
"dbtrAgt",
|
||||
"ultmtDbtr",
|
||||
"chrgBr",
|
||||
"chrgsAcct",
|
||||
"cdtTrfTxInf"
|
||||
})
|
||||
public class CBIPaymentInstructionInformation {
|
||||
|
||||
@XmlElement(name = "PmtInfId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String pmtInfId;
|
||||
@XmlElement(name = "PmtMtd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected PaymentMethod3Code pmtMtd;
|
||||
@XmlElement(name = "BtchBookg", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected Boolean btchBookg;
|
||||
@XmlElement(name = "PmtTpInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPaymentTypeInformation1 pmtTpInf;
|
||||
@XmlElement(name = "ReqdExctnDt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected DateAndDateTime2Choice reqdExctnDt;
|
||||
@XmlElement(name = "Dbtr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIPartyIdentification4 dbtr;
|
||||
@XmlElement(name = "DbtrAcct", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBICashAccount2 dbtrAcct;
|
||||
@XmlElement(name = "DbtrAgt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIBranchAndFinancialInstitutionIdentification2 dbtrAgt;
|
||||
@XmlElement(name = "UltmtDbtr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIPartyIdentification2 ultmtDbtr;
|
||||
@XmlElement(name = "ChrgBr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIChargeBearerTypeCode chrgBr;
|
||||
@XmlElement(name = "ChrgsAcct", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBICashAccount1 chrgsAcct;
|
||||
@XmlElement(name = "CdtTrfTxInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected List<CBICreditTransferTransactionInformation> cdtTrfTxInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtInfId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPmtInfId() {
|
||||
return pmtInfId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtInfId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPmtInfId(String value) {
|
||||
this.pmtInfId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtMtd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PaymentMethod3Code }
|
||||
*
|
||||
*/
|
||||
public PaymentMethod3Code getPmtMtd() {
|
||||
return pmtMtd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtMtd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PaymentMethod3Code }
|
||||
*
|
||||
*/
|
||||
public void setPmtMtd(PaymentMethod3Code value) {
|
||||
this.pmtMtd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà btchBookg.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isBtchBookg() {
|
||||
return btchBookg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà btchBookg.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setBtchBookg(Boolean value) {
|
||||
this.btchBookg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtTpInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPaymentTypeInformation1 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentTypeInformation1 getPmtTpInf() {
|
||||
return pmtTpInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtTpInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPaymentTypeInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setPmtTpInf(CBIPaymentTypeInformation1 value) {
|
||||
this.pmtTpInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà reqdExctnDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DateAndDateTime2Choice }
|
||||
*
|
||||
*/
|
||||
public DateAndDateTime2Choice getReqdExctnDt() {
|
||||
return reqdExctnDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà reqdExctnDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DateAndDateTime2Choice }
|
||||
*
|
||||
*/
|
||||
public void setReqdExctnDt(DateAndDateTime2Choice value) {
|
||||
this.reqdExctnDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification4 getDbtr() {
|
||||
return dbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setDbtr(CBIPartyIdentification4 value) {
|
||||
this.dbtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtrAcct.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBICashAccount2 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount2 getDbtrAcct() {
|
||||
return dbtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount2 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAcct(CBICashAccount2 value) {
|
||||
this.dbtrAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification2 getDbtrAgt() {
|
||||
return dbtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAgt(CBIBranchAndFinancialInstitutionIdentification2 value) {
|
||||
this.dbtrAgt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification2 getUltmtDbtr() {
|
||||
return ultmtDbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setUltmtDbtr(CBIPartyIdentification2 value) {
|
||||
this.ultmtDbtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chrgBr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIChargeBearerTypeCode }
|
||||
*
|
||||
*/
|
||||
public CBIChargeBearerTypeCode getChrgBr() {
|
||||
return chrgBr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chrgBr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIChargeBearerTypeCode }
|
||||
*
|
||||
*/
|
||||
public void setChrgBr(CBIChargeBearerTypeCode value) {
|
||||
this.chrgBr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chrgsAcct.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBICashAccount1 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount1 getChrgsAcct() {
|
||||
return chrgsAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chrgsAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount1 }
|
||||
*
|
||||
*/
|
||||
public void setChrgsAcct(CBICashAccount1 value) {
|
||||
this.chrgsAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cdtTrfTxInf property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the cdtTrfTxInf property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCdtTrfTxInf().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBICreditTransferTransactionInformation }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBICreditTransferTransactionInformation> getCdtTrfTxInf() {
|
||||
if (cdtTrfTxInf == null) {
|
||||
cdtTrfTxInf = new ArrayList<CBICreditTransferTransactionInformation>();
|
||||
}
|
||||
return this.cdtTrfTxInf;
|
||||
}
|
||||
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -0,0 +1,88 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.*;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPaymentRequest.00.04.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentRequest.00.04.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="GrpHdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGroupHeader"/>
|
||||
* <element name="PmtInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIPaymentInstructionInformation"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentRequest.00.04.01", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"grpHdr",
|
||||
"pmtInf"
|
||||
})
|
||||
@XmlRootElement(name = "CBIPaymentRequest")
|
||||
public class CBIPaymentRequest000401 {
|
||||
|
||||
@XmlElement(name = "GrpHdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIGroupHeader grpHdr;
|
||||
@XmlElement(name = "PmtInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIPaymentInstructionInformation pmtInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grpHdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGroupHeader }
|
||||
*
|
||||
*/
|
||||
public CBIGroupHeader getGrpHdr() {
|
||||
return grpHdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grpHdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGroupHeader }
|
||||
*
|
||||
*/
|
||||
public void setGrpHdr(CBIGroupHeader value) {
|
||||
this.grpHdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPaymentInstructionInformation }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentInstructionInformation getPmtInf() {
|
||||
return pmtInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPaymentInstructionInformation }
|
||||
*
|
||||
*/
|
||||
public void setPmtInf(CBIPaymentInstructionInformation value) {
|
||||
this.pmtInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- edited with XMLSpy v2013 rel. 2 (x64) (http://www.altova.com) by Ivana Gargiulo (CONSORZIO CUSTOMER TO BUSINESS INTERACTION - CBI) -->
|
||||
<!-- Entrata in vigore: 17/03/2024 -->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:BODY="urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01" xmlns:HTRT="urn:CBI:xsd:CBIHdrTrt.001.07" xmlns:HE2E="urn:CBI:xsd:CBIHdrSrv.001.07" xmlns:SGNT="urn:CBI:xsd:CBISgnInf.001.04" xmlns:PMRQ="urn:CBI:xsd:CBIPaymentRequest.00.04.01" xmlns="urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01" targetNamespace="urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01" elementFormDefault="qualified">
|
||||
<xs:import namespace="urn:CBI:xsd:CBIHdrTrt.001.07" schemaLocation="CBIHdrTrt.001.07.xsd"/>
|
||||
<xs:import namespace="urn:CBI:xsd:CBIHdrSrv.001.07" schemaLocation="CBIHdrSrv.001.07.xsd"/>
|
||||
<xs:import namespace="urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01" schemaLocation="CBIBdyPaymentRequest.00.04.01.xsd"/>
|
||||
<xs:element name="CBIPaymentRequestMsg" type="CBIPaymentRequestMsg.00.04.01"/>
|
||||
<xs:complexType name="CBIPaymentRequestMsg.00.04.01">
|
||||
<xs:sequence>
|
||||
<xs:element name="CBIHdrTrt" type="HTRT:CBIHdrTrt.001.07"/>
|
||||
<xs:element name="CBIHdrSrv" type="HE2E:CBIHdrSrv.001.07"/>
|
||||
<xs:element name="CBIBdyPaymentRequest" type="BODY:CBIBdyPaymentRequest.00.04.01"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,129 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPaymentRequestMsg.00.04.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentRequestMsg.00.04.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CBIHdrTrt" type="{urn:CBI:xsd:CBIHdrTrt.001.07}CBIHdrTrt.001.07"/>
|
||||
* <element name="CBIHdrSrv" type="{urn:CBI:xsd:CBIHdrSrv.001.07}CBIHdrSrv.001.07"/>
|
||||
* <element name="CBIBdyPaymentRequest" type="{urn:CBI:xsd:CBIBdyPaymentRequest.00.04.01}CBIBdyPaymentRequest.00.04.01"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentRequestMsg.00.04.01", namespace = "urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01", propOrder = {
|
||||
"cbiHdrTrt",
|
||||
"cbiHdrSrv",
|
||||
"cbiBdyPaymentRequest"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBIPaymentRequestMsg000401 {
|
||||
|
||||
@XmlElement(name = "CBIHdrTrt", namespace = "urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CBIHdrTrt00107 cbiHdrTrt;
|
||||
@XmlElement(name = "CBIHdrSrv", namespace = "urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CBIHdrSrv00107 cbiHdrSrv;
|
||||
@XmlElement(name = "CBIBdyPaymentRequest", namespace = "urn:CBI:xsd:CBIPaymentRequestMsg.00.04.01", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected CBIBdyPaymentRequest000401 cbiBdyPaymentRequest;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CBIHdrTrt00107 getCBIHdrTrt() {
|
||||
return cbiHdrTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCBIHdrTrt(CBIHdrTrt00107 value) {
|
||||
this.cbiHdrTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CBIHdrSrv00107 getCBIHdrSrv() {
|
||||
return cbiHdrSrv;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCBIHdrSrv(CBIHdrSrv00107 value) {
|
||||
this.cbiHdrSrv = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiBdyPaymentRequest.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBdyPaymentRequest000401 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public CBIBdyPaymentRequest000401 getCBIBdyPaymentRequest() {
|
||||
return cbiBdyPaymentRequest;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiBdyPaymentRequest.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBdyPaymentRequest000401 }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setCBIBdyPaymentRequest(CBIBdyPaymentRequest000401 value) {
|
||||
this.cbiBdyPaymentRequest = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,120 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPaymentTypeInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentTypeInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="InstrPrty" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Priority2Code" minOccurs="0"/>
|
||||
* <element name="SvcLvl" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIServiceLevel1" minOccurs="0"/>
|
||||
* <element name="LclInstrm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBILocalInstrument2" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentTypeInformation1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"instrPrty",
|
||||
"svcLvl",
|
||||
"lclInstrm"
|
||||
})
|
||||
public class CBIPaymentTypeInformation1 {
|
||||
|
||||
@XmlElement(name = "InstrPrty", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected Priority2Code instrPrty;
|
||||
@XmlElement(name = "SvcLvl", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIServiceLevel1 svcLvl;
|
||||
@XmlElement(name = "LclInstrm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBILocalInstrument2 lclInstrm;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà instrPrty.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Priority2Code }
|
||||
*
|
||||
*/
|
||||
public Priority2Code getInstrPrty() {
|
||||
return instrPrty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà instrPrty.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Priority2Code }
|
||||
*
|
||||
*/
|
||||
public void setInstrPrty(Priority2Code value) {
|
||||
this.instrPrty = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà svcLvl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceLevel1 }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel1 getSvcLvl() {
|
||||
return svcLvl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà svcLvl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceLevel1 }
|
||||
*
|
||||
*/
|
||||
public void setSvcLvl(CBIServiceLevel1 value) {
|
||||
this.svcLvl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBILocalInstrument2 }
|
||||
*
|
||||
*/
|
||||
public CBILocalInstrument2 getLclInstrm() {
|
||||
return lclInstrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBILocalInstrument2 }
|
||||
*
|
||||
*/
|
||||
public void setLclInstrm(CBILocalInstrument2 value) {
|
||||
this.lclInstrm = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPaymentTypeInformation2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentTypeInformation2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SvcLvl" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIServiceLevel2" minOccurs="0"/>
|
||||
* <element name="LclInstrm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBILocalInstrument1" minOccurs="0"/>
|
||||
* <element name="CtgyPurp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CategoryPurpose1Choice" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentTypeInformation2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"svcLvl",
|
||||
"lclInstrm",
|
||||
"ctgyPurp"
|
||||
})
|
||||
public class CBIPaymentTypeInformation2 {
|
||||
|
||||
@XmlElement(name = "SvcLvl", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIServiceLevel2 svcLvl;
|
||||
@XmlElement(name = "LclInstrm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBILocalInstrument1 lclInstrm;
|
||||
@XmlElement(name = "CtgyPurp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CategoryPurpose1Choice ctgyPurp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà svcLvl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceLevel2 }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel2 getSvcLvl() {
|
||||
return svcLvl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà svcLvl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceLevel2 }
|
||||
*
|
||||
*/
|
||||
public void setSvcLvl(CBIServiceLevel2 value) {
|
||||
this.svcLvl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBILocalInstrument1 }
|
||||
*
|
||||
*/
|
||||
public CBILocalInstrument1 getLclInstrm() {
|
||||
return lclInstrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBILocalInstrument1 }
|
||||
*
|
||||
*/
|
||||
public void setLclInstrm(CBILocalInstrument1 value) {
|
||||
this.lclInstrm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CategoryPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public CategoryPurpose1Choice getCtgyPurp() {
|
||||
return ctgyPurp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CategoryPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public void setCtgyPurp(CategoryPurpose1Choice value) {
|
||||
this.ctgyPurp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPersonIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPersonIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIGenericIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPersonIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIPersonIdentification1 {
|
||||
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CBIGenericIdentification1 othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification1 getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setOthr(CBIGenericIdentification1 value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,489 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIPostalAddress24 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPostalAddress24">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AdrTp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AddressType3Choice" minOccurs="0"/>
|
||||
* <element name="Dept" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="SubDept" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="StrtNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="BldgNb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="BldgNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Flr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstBx" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="Room" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstCd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="TwnNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="TwnLctnNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="DstrctNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="CtrySubDvsn" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Ctry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CountryCode" minOccurs="0"/>
|
||||
* <element name="AdrLine" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" maxOccurs="2" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPostalAddress24", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"adrTp",
|
||||
"dept",
|
||||
"subDept",
|
||||
"strtNm",
|
||||
"bldgNb",
|
||||
"bldgNm",
|
||||
"flr",
|
||||
"pstBx",
|
||||
"room",
|
||||
"pstCd",
|
||||
"twnNm",
|
||||
"twnLctnNm",
|
||||
"dstrctNm",
|
||||
"ctrySubDvsn",
|
||||
"ctry",
|
||||
"adrLine"
|
||||
})
|
||||
public class CBIPostalAddress24 {
|
||||
|
||||
@XmlElement(name = "AdrTp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected AddressType3Choice adrTp;
|
||||
@XmlElement(name = "Dept", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String dept;
|
||||
@XmlElement(name = "SubDept", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String subDept;
|
||||
@XmlElement(name = "StrtNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String strtNm;
|
||||
@XmlElement(name = "BldgNb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String bldgNb;
|
||||
@XmlElement(name = "BldgNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String bldgNm;
|
||||
@XmlElement(name = "Flr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String flr;
|
||||
@XmlElement(name = "PstBx", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String pstBx;
|
||||
@XmlElement(name = "Room", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String room;
|
||||
@XmlElement(name = "PstCd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String pstCd;
|
||||
@XmlElement(name = "TwnNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String twnNm;
|
||||
@XmlElement(name = "TwnLctnNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String twnLctnNm;
|
||||
@XmlElement(name = "DstrctNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String dstrctNm;
|
||||
@XmlElement(name = "CtrySubDvsn", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ctrySubDvsn;
|
||||
@XmlElement(name = "Ctry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ctry;
|
||||
@XmlElement(name = "AdrLine", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<String> adrLine;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà adrTp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AddressType3Choice }
|
||||
*
|
||||
*/
|
||||
public AddressType3Choice getAdrTp() {
|
||||
return adrTp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà adrTp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AddressType3Choice }
|
||||
*
|
||||
*/
|
||||
public void setAdrTp(AddressType3Choice value) {
|
||||
this.adrTp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dept.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDept() {
|
||||
return dept;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dept.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDept(String value) {
|
||||
this.dept = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà subDept.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSubDept() {
|
||||
return subDept;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà subDept.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSubDept(String value) {
|
||||
this.subDept = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà strtNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStrtNm() {
|
||||
return strtNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà strtNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStrtNm(String value) {
|
||||
this.strtNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà bldgNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBldgNb() {
|
||||
return bldgNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà bldgNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBldgNb(String value) {
|
||||
this.bldgNb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà bldgNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getBldgNm() {
|
||||
return bldgNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà bldgNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setBldgNm(String value) {
|
||||
this.bldgNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà flr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFlr() {
|
||||
return flr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà flr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFlr(String value) {
|
||||
this.flr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pstBx.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPstBx() {
|
||||
return pstBx;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstBx.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPstBx(String value) {
|
||||
this.pstBx = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà room.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRoom() {
|
||||
return room;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà room.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRoom(String value) {
|
||||
this.room = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pstCd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPstCd() {
|
||||
return pstCd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstCd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPstCd(String value) {
|
||||
this.pstCd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà twnNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTwnNm() {
|
||||
return twnNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà twnNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTwnNm(String value) {
|
||||
this.twnNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà twnLctnNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTwnLctnNm() {
|
||||
return twnLctnNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà twnLctnNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTwnLctnNm(String value) {
|
||||
this.twnLctnNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dstrctNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDstrctNm() {
|
||||
return dstrctNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dstrctNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDstrctNm(String value) {
|
||||
this.dstrctNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctrySubDvsn.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtrySubDvsn() {
|
||||
return ctrySubDvsn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctrySubDvsn.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtrySubDvsn(String value) {
|
||||
this.ctrySubDvsn = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtry() {
|
||||
return ctry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtry(String value) {
|
||||
this.ctry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the adrLine property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the adrLine property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getAdrLine().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link String }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<String> getAdrLine() {
|
||||
if (adrLine == null) {
|
||||
adrLine = new ArrayList<String>();
|
||||
}
|
||||
return this.adrLine;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRegulatoryReporting1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIRegulatoryReporting1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DbtCdtRptgInd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIRegulatoryReportingType1Code"/>
|
||||
* <element name="Dtls" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIStructuredRegulatoryReporting1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIRegulatoryReporting1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"dbtCdtRptgInd",
|
||||
"dtls"
|
||||
})
|
||||
public class CBIRegulatoryReporting1 {
|
||||
|
||||
@XmlElement(name = "DbtCdtRptgInd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIRegulatoryReportingType1Code dbtCdtRptgInd;
|
||||
@XmlElement(name = "Dtls", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CBIStructuredRegulatoryReporting1 dtls;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtCdtRptgInd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIRegulatoryReportingType1Code }
|
||||
*
|
||||
*/
|
||||
public CBIRegulatoryReportingType1Code getDbtCdtRptgInd() {
|
||||
return dbtCdtRptgInd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtCdtRptgInd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIRegulatoryReportingType1Code }
|
||||
*
|
||||
*/
|
||||
public void setDbtCdtRptgInd(CBIRegulatoryReportingType1Code value) {
|
||||
this.dbtCdtRptgInd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtls.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIStructuredRegulatoryReporting1 }
|
||||
*
|
||||
*/
|
||||
public CBIStructuredRegulatoryReporting1 getDtls() {
|
||||
return dtls;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtls.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIStructuredRegulatoryReporting1 }
|
||||
*
|
||||
*/
|
||||
public void setDtls(CBIStructuredRegulatoryReporting1 value) {
|
||||
this.dtls = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRegulatoryReportingType1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIRegulatoryReportingType1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="DEBT"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIRegulatoryReportingType1Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBIRegulatoryReportingType1Code {
|
||||
|
||||
DEBT;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIRegulatoryReportingType1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRemittanceLocation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIRemittanceLocation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="RmtId" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="RmtLctnDtls" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIRemittanceLocationData1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIRemittanceLocation1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"rmtId",
|
||||
"rmtLctnDtls"
|
||||
})
|
||||
public class CBIRemittanceLocation1 {
|
||||
|
||||
@XmlElement(name = "RmtId", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String rmtId;
|
||||
@XmlElement(name = "RmtLctnDtls", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<CBIRemittanceLocationData1> rmtLctnDtls;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rmtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRmtId() {
|
||||
return rmtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rmtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRmtId(String value) {
|
||||
this.rmtId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the rmtLctnDtls property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the rmtLctnDtls property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getRmtLctnDtls().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIRemittanceLocationData1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIRemittanceLocationData1> getRmtLctnDtls() {
|
||||
if (rmtLctnDtls == null) {
|
||||
rmtLctnDtls = new ArrayList<CBIRemittanceLocationData1>();
|
||||
}
|
||||
return this.rmtLctnDtls;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRemittanceLocationData1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIRemittanceLocationData1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Mtd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIRemittanceLocationMethod1Code"/>
|
||||
* <element name="ElctrncAdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max2048Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIRemittanceLocationData1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"mtd",
|
||||
"elctrncAdr"
|
||||
})
|
||||
public class CBIRemittanceLocationData1 {
|
||||
|
||||
@XmlElement(name = "Mtd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIRemittanceLocationMethod1Code mtd;
|
||||
@XmlElement(name = "ElctrncAdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String elctrncAdr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mtd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIRemittanceLocationMethod1Code }
|
||||
*
|
||||
*/
|
||||
public CBIRemittanceLocationMethod1Code getMtd() {
|
||||
return mtd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mtd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIRemittanceLocationMethod1Code }
|
||||
*
|
||||
*/
|
||||
public void setMtd(CBIRemittanceLocationMethod1Code value) {
|
||||
this.mtd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà elctrncAdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getElctrncAdr() {
|
||||
return elctrncAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà elctrncAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setElctrncAdr(String value) {
|
||||
this.elctrncAdr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRemittanceLocationMethod1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIRemittanceLocationMethod1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="FAXI"/>
|
||||
* <enumeration value="EMAL"/>
|
||||
* <enumeration value="SMSM"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIRemittanceLocationMethod1Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBIRemittanceLocationMethod1Code {
|
||||
|
||||
FAXI,
|
||||
EMAL,
|
||||
SMSM;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIRemittanceLocationMethod1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIServiceLevel1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIServiceLevel1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CBIServiceLevel1Code"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIServiceLevel1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd"
|
||||
})
|
||||
public class CBIServiceLevel1 {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIServiceLevel1Code cd;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceLevel1Code }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel1Code getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceLevel1Code }
|
||||
*
|
||||
*/
|
||||
public void setCd(CBIServiceLevel1Code value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIServiceLevel1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIServiceLevel1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="SEPA"/>
|
||||
* <enumeration value="URGP"/>
|
||||
* <enumeration value="FAST"/>
|
||||
* <enumeration value="PGPA"/>
|
||||
* <enumeration value="PGSP"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIServiceLevel1Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBIServiceLevel1Code {
|
||||
|
||||
SEPA,
|
||||
URGP,
|
||||
FAST,
|
||||
PGPA,
|
||||
PGSP;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIServiceLevel1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIServiceLevel2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIServiceLevel2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIServiceLevel2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"prtry"
|
||||
})
|
||||
public class CBIServiceLevel2 {
|
||||
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,162 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBISgnInf.001.04 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISgnInf.001.04">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SgnTyp" type="{urn:CBI:xsd:CBISgnInf.001.04}SignatureType"/>
|
||||
* <element name="RefPlt" type="{urn:CBI:xsd:CBISgnInf.001.04}RecerencePlatform"/>
|
||||
* <element name="DtRef" type="{urn:CBI:xsd:CBISgnInf.001.04}ISODateTime"/>
|
||||
* <element name="Sgnt" type="{urn:CBI:xsd:CBISgnInf.001.04}P7M"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISgnInf.001.04", namespace = "urn:CBI:xsd:CBISgnInf.001.04", propOrder = {
|
||||
"sgnTyp",
|
||||
"refPlt",
|
||||
"dtRef",
|
||||
"sgnt"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CBISgnInf00104 {
|
||||
|
||||
@XmlElement(name = "SgnTyp", namespace = "urn:CBI:xsd:CBISgnInf.001.04", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String sgnTyp;
|
||||
@XmlElement(name = "RefPlt", namespace = "urn:CBI:xsd:CBISgnInf.001.04", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected RecerencePlatform refPlt;
|
||||
@XmlElement(name = "DtRef", namespace = "urn:CBI:xsd:CBISgnInf.001.04", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected XMLGregorianCalendar dtRef;
|
||||
@XmlElement(name = "Sgnt", namespace = "urn:CBI:xsd:CBISgnInf.001.04", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected byte[] sgnt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sgnTyp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getSgnTyp() {
|
||||
return sgnTyp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sgnTyp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSgnTyp(String value) {
|
||||
this.sgnTyp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà refPlt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecerencePlatform }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public RecerencePlatform getRefPlt() {
|
||||
return refPlt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà refPlt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecerencePlatform }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setRefPlt(RecerencePlatform value) {
|
||||
this.refPlt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtRef.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public XMLGregorianCalendar getDtRef() {
|
||||
return dtRef;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtRef.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setDtRef(XMLGregorianCalendar value) {
|
||||
this.dtRef = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sgnt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* byte[]
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public byte[] getSgnt() {
|
||||
return sgnt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sgnt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* byte[]
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSgnt(byte[] value) {
|
||||
this.sgnt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBISrvInf1.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBISrvInf1">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="ESBEN"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBISrvInf1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CBISrvInf1 {
|
||||
|
||||
ESBEN;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBISrvInf1 fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIStructuredRegulatoryReporting1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIStructuredRegulatoryReporting1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd">
|
||||
* <simpleType>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="INF"/>
|
||||
* <enumeration value="SNR"/>
|
||||
* <enumeration value="CVA"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
|
||||
* <element name="Inf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIStructuredRegulatoryReporting1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"amt",
|
||||
"inf"
|
||||
})
|
||||
public class CBIStructuredRegulatoryReporting1 {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String cd;
|
||||
@XmlElement(name = "Amt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
@XmlElement(name = "Inf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String inf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public void setAmt(ActiveOrHistoricCurrencyAndAmount value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà inf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInf() {
|
||||
return inf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà inf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInf(String value) {
|
||||
this.inf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CashAccountType2Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CashAccountType2Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalCashAccountType1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CashAccountType2Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class CashAccountType2Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CategoryPurpose1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CategoryPurpose1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalCategoryPurpose1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CategoryPurpose1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class CategoryPurpose1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.math.BigInteger;
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CongruencyInformation complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CongruencyInformation">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SrvBdyNb" type="{urn:CBI:xsd:CBIHdrSrv.001.07}SrvBodyNumber"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CongruencyInformation", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", propOrder = {
|
||||
"srvBdyNb"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class CongruencyInformation {
|
||||
|
||||
@XmlElement(name = "SrvBdyNb", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@XmlSchemaType(name = "positiveInteger")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected BigInteger srvBdyNb;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvBdyNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public BigInteger getSrvBdyNb() {
|
||||
return srvBdyNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvBdyNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setSrvBdyNb(BigInteger value) {
|
||||
this.srvBdyNb = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,380 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per Contact4 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Contact4">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="NmPrfx" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}NamePrefix2Code" minOccurs="0"/>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max140Text" minOccurs="0"/>
|
||||
* <element name="PhneNb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="MobNb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="FaxNb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="EmailAdr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max2048Text" minOccurs="0"/>
|
||||
* <element name="EmailPurp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="JobTitl" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Rspnsblty" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Dept" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}OtherContact1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="PrefrdMtd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PreferredContactMethod1Code" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Contact4", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"nmPrfx",
|
||||
"nm",
|
||||
"phneNb",
|
||||
"mobNb",
|
||||
"faxNb",
|
||||
"emailAdr",
|
||||
"emailPurp",
|
||||
"jobTitl",
|
||||
"rspnsblty",
|
||||
"dept",
|
||||
"othr",
|
||||
"prefrdMtd"
|
||||
})
|
||||
public class Contact4 {
|
||||
|
||||
@XmlElement(name = "NmPrfx", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected NamePrefix2Code nmPrfx;
|
||||
@XmlElement(name = "Nm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PhneNb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String phneNb;
|
||||
@XmlElement(name = "MobNb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String mobNb;
|
||||
@XmlElement(name = "FaxNb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String faxNb;
|
||||
@XmlElement(name = "EmailAdr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String emailAdr;
|
||||
@XmlElement(name = "EmailPurp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String emailPurp;
|
||||
@XmlElement(name = "JobTitl", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String jobTitl;
|
||||
@XmlElement(name = "Rspnsblty", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String rspnsblty;
|
||||
@XmlElement(name = "Dept", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String dept;
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<OtherContact1> othr;
|
||||
@XmlElement(name = "PrefrdMtd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected PreferredContactMethod1Code prefrdMtd;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nmPrfx.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link NamePrefix2Code }
|
||||
*
|
||||
*/
|
||||
public NamePrefix2Code getNmPrfx() {
|
||||
return nmPrfx;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nmPrfx.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link NamePrefix2Code }
|
||||
*
|
||||
*/
|
||||
public void setNmPrfx(NamePrefix2Code value) {
|
||||
this.nmPrfx = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNm() {
|
||||
return nm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNm(String value) {
|
||||
this.nm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà phneNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPhneNb() {
|
||||
return phneNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà phneNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPhneNb(String value) {
|
||||
this.phneNb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mobNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getMobNb() {
|
||||
return mobNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mobNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setMobNb(String value) {
|
||||
this.mobNb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà faxNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getFaxNb() {
|
||||
return faxNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà faxNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setFaxNb(String value) {
|
||||
this.faxNb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà emailAdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEmailAdr() {
|
||||
return emailAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà emailAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEmailAdr(String value) {
|
||||
this.emailAdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà emailPurp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEmailPurp() {
|
||||
return emailPurp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà emailPurp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEmailPurp(String value) {
|
||||
this.emailPurp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà jobTitl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getJobTitl() {
|
||||
return jobTitl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà jobTitl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setJobTitl(String value) {
|
||||
this.jobTitl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rspnsblty.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRspnsblty() {
|
||||
return rspnsblty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rspnsblty.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRspnsblty(String value) {
|
||||
this.rspnsblty = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dept.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDept() {
|
||||
return dept;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dept.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDept(String value) {
|
||||
this.dept = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the othr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the othr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOthr().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link OtherContact1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<OtherContact1> getOthr() {
|
||||
if (othr == null) {
|
||||
othr = new ArrayList<OtherContact1>();
|
||||
}
|
||||
return this.othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prefrdMtd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PreferredContactMethod1Code }
|
||||
*
|
||||
*/
|
||||
public PreferredContactMethod1Code getPrefrdMtd() {
|
||||
return prefrdMtd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prefrdMtd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PreferredContactMethod1Code }
|
||||
*
|
||||
*/
|
||||
public void setPrefrdMtd(PreferredContactMethod1Code value) {
|
||||
this.prefrdMtd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CreditDebitCode.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CreditDebitCode">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="CRDT"/>
|
||||
* <enumeration value="DBIT"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CreditDebitCode", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum CreditDebitCode {
|
||||
|
||||
CRDT,
|
||||
DBIT;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CreditDebitCode fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CreditorReferenceInformation2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreditorReferenceInformation2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Tp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CreditorReferenceType2" minOccurs="0"/>
|
||||
* <element name="Ref" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceInformation2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"tp",
|
||||
"ref"
|
||||
})
|
||||
public class CreditorReferenceInformation2 {
|
||||
|
||||
@XmlElement(name = "Tp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected CreditorReferenceType2 tp;
|
||||
@XmlElement(name = "Ref", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String ref;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CreditorReferenceType2 }
|
||||
*
|
||||
*/
|
||||
public CreditorReferenceType2 getTp() {
|
||||
return tp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CreditorReferenceType2 }
|
||||
*
|
||||
*/
|
||||
public void setTp(CreditorReferenceType2 value) {
|
||||
this.tp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ref.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRef() {
|
||||
return ref;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ref.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRef(String value) {
|
||||
this.ref = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CreditorReferenceType1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreditorReferenceType1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DocumentType3Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceType1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class CreditorReferenceType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected DocumentType3Code cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DocumentType3Code }
|
||||
*
|
||||
*/
|
||||
public DocumentType3Code getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DocumentType3Code }
|
||||
*
|
||||
*/
|
||||
public void setCd(DocumentType3Code value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CreditorReferenceType2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CreditorReferenceType2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CdOrPrtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CreditorReferenceType1Choice"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceType2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cdOrPrtry",
|
||||
"issr"
|
||||
})
|
||||
public class CreditorReferenceType2 {
|
||||
|
||||
@XmlElement(name = "CdOrPrtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected CreditorReferenceType1Choice cdOrPrtry;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CreditorReferenceType1Choice }
|
||||
*
|
||||
*/
|
||||
public CreditorReferenceType1Choice getCdOrPrtry() {
|
||||
return cdOrPrtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CreditorReferenceType1Choice }
|
||||
*
|
||||
*/
|
||||
public void setCdOrPrtry(CreditorReferenceType1Choice value) {
|
||||
this.cdOrPrtry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DateAndDateTime2Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DateAndDateTime2Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Dt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate"/>
|
||||
* <element name="DtTm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODateTime"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DateAndDateTime2Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"dt",
|
||||
"dtTm"
|
||||
})
|
||||
public class DateAndDateTime2Choice {
|
||||
|
||||
@XmlElement(name = "Dt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar dt;
|
||||
@XmlElement(name = "DtTm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar dtTm;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDt() {
|
||||
return dt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDt(XMLGregorianCalendar value) {
|
||||
this.dt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtTm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDtTm() {
|
||||
return dtTm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtTm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDtTm(XMLGregorianCalendar value) {
|
||||
this.dtTm = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,149 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DateAndPlaceOfBirth1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DateAndPlaceOfBirth1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BirthDt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate"/>
|
||||
* <element name="PrvcOfBirth" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="CityOfBirth" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="CtryOfBirth" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CountryCode"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DateAndPlaceOfBirth1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"birthDt",
|
||||
"prvcOfBirth",
|
||||
"cityOfBirth",
|
||||
"ctryOfBirth"
|
||||
})
|
||||
public class DateAndPlaceOfBirth1 {
|
||||
|
||||
@XmlElement(name = "BirthDt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar birthDt;
|
||||
@XmlElement(name = "PrvcOfBirth", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prvcOfBirth;
|
||||
@XmlElement(name = "CityOfBirth", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String cityOfBirth;
|
||||
@XmlElement(name = "CtryOfBirth", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String ctryOfBirth;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà birthDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getBirthDt() {
|
||||
return birthDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà birthDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setBirthDt(XMLGregorianCalendar value) {
|
||||
this.birthDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prvcOfBirth.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrvcOfBirth() {
|
||||
return prvcOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prvcOfBirth.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrvcOfBirth(String value) {
|
||||
this.prvcOfBirth = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cityOfBirth.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCityOfBirth() {
|
||||
return cityOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cityOfBirth.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCityOfBirth(String value) {
|
||||
this.cityOfBirth = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctryOfBirth.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCtryOfBirth() {
|
||||
return ctryOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctryOfBirth.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCtryOfBirth(String value) {
|
||||
this.ctryOfBirth = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DatePeriod2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DatePeriod2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FrDt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate"/>
|
||||
* <element name="ToDt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DatePeriod2", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"frDt",
|
||||
"toDt"
|
||||
})
|
||||
public class DatePeriod2 {
|
||||
|
||||
@XmlElement(name = "FrDt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar frDt;
|
||||
@XmlElement(name = "ToDt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar toDt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà frDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getFrDt() {
|
||||
return frDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà frDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setFrDt(XMLGregorianCalendar value) {
|
||||
this.frDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà toDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getToDt() {
|
||||
return toDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà toDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setToDt(XMLGregorianCalendar value) {
|
||||
this.toDt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,163 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DiagnosticInformation complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DiagnosticInformation">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="UsrBnk" type="{urn:CBI:xsd:CBIHdrSrv.001.07}CBIIdentifier" minOccurs="0"/>
|
||||
* <element name="DiagVers" type="{urn:CBI:xsd:CBIHdrSrv.001.07}Max35Text"/>
|
||||
* <element name="ChkSbj" type="{urn:CBI:xsd:CBIHdrSrv.001.07}CBIIdentifier"/>
|
||||
* <element name="ChkDt" type="{urn:CBI:xsd:CBIHdrSrv.001.07}ISODateTime"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiagnosticInformation", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", propOrder = {
|
||||
"usrBnk",
|
||||
"diagVers",
|
||||
"chkSbj",
|
||||
"chkDt"
|
||||
})
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public class DiagnosticInformation {
|
||||
|
||||
@XmlElement(name = "UsrBnk", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String usrBnk;
|
||||
@XmlElement(name = "DiagVers", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String diagVers;
|
||||
@XmlElement(name = "ChkSbj", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected String chkSbj;
|
||||
@XmlElement(name = "ChkDt", namespace = "urn:CBI:xsd:CBIHdrSrv.001.07", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
protected XMLGregorianCalendar chkDt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà usrBnk.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getUsrBnk() {
|
||||
return usrBnk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà usrBnk.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setUsrBnk(String value) {
|
||||
this.usrBnk = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà diagVers.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getDiagVers() {
|
||||
return diagVers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà diagVers.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setDiagVers(String value) {
|
||||
this.diagVers = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chkSbj.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public String getChkSbj() {
|
||||
return chkSbj;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chkSbj.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setChkSbj(String value) {
|
||||
this.chkSbj = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chkDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public XMLGregorianCalendar getChkDt() {
|
||||
return chkDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chkDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
@Generated(value = "com.sun.tools.internal.xjc.Driver", date = "2024-03-06T12:29:24+01:00", comments = "JAXB RI v2.2.8-b130911.1802")
|
||||
public void setChkDt(XMLGregorianCalendar value) {
|
||||
this.chkDt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DiscountAmountAndType1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DiscountAmountAndType1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Tp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DiscountAmountType1Choice" minOccurs="0"/>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscountAmountAndType1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"tp",
|
||||
"amt"
|
||||
})
|
||||
public class DiscountAmountAndType1 {
|
||||
|
||||
@XmlElement(name = "Tp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected DiscountAmountType1Choice tp;
|
||||
@XmlElement(name = "Amt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DiscountAmountType1Choice }
|
||||
*
|
||||
*/
|
||||
public DiscountAmountType1Choice getTp() {
|
||||
return tp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DiscountAmountType1Choice }
|
||||
*
|
||||
*/
|
||||
public void setTp(DiscountAmountType1Choice value) {
|
||||
this.tp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public void setAmt(ActiveOrHistoricCurrencyAndAmount value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DiscountAmountType1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DiscountAmountType1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalDiscountAmountType1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscountAmountType1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class DiscountAmountType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentAdjustment1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DocumentAdjustment1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* <element name="CdtDbtInd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}CreditDebitCode" minOccurs="0"/>
|
||||
* <element name="Rsn" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max4Text" minOccurs="0"/>
|
||||
* <element name="AddtlInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max140Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentAdjustment1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"amt",
|
||||
"cdtDbtInd",
|
||||
"rsn",
|
||||
"addtlInf"
|
||||
})
|
||||
public class DocumentAdjustment1 {
|
||||
|
||||
@XmlElement(name = "Amt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
@XmlElement(name = "CdtDbtInd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CreditDebitCode cdtDbtInd;
|
||||
@XmlElement(name = "Rsn", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String rsn;
|
||||
@XmlElement(name = "AddtlInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String addtlInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public void setAmt(ActiveOrHistoricCurrencyAndAmount value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdtDbtInd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CreditDebitCode }
|
||||
*
|
||||
*/
|
||||
public CreditDebitCode getCdtDbtInd() {
|
||||
return cdtDbtInd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtDbtInd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CreditDebitCode }
|
||||
*
|
||||
*/
|
||||
public void setCdtDbtInd(CreditDebitCode value) {
|
||||
this.cdtDbtInd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rsn.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRsn() {
|
||||
return rsn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rsn.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRsn(String value) {
|
||||
this.rsn = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà addtlInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAddtlInf() {
|
||||
return addtlInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà addtlInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAddtlInf(String value) {
|
||||
this.addtlInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentLineIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DocumentLineIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Tp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DocumentLineType1" minOccurs="0"/>
|
||||
* <element name="Nb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="RltdDt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentLineIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"tp",
|
||||
"nb",
|
||||
"rltdDt"
|
||||
})
|
||||
public class DocumentLineIdentification1 {
|
||||
|
||||
@XmlElement(name = "Tp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected DocumentLineType1 tp;
|
||||
@XmlElement(name = "Nb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String nb;
|
||||
@XmlElement(name = "RltdDt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar rltdDt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DocumentLineType1 }
|
||||
*
|
||||
*/
|
||||
public DocumentLineType1 getTp() {
|
||||
return tp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DocumentLineType1 }
|
||||
*
|
||||
*/
|
||||
public void setTp(DocumentLineType1 value) {
|
||||
this.tp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getNb() {
|
||||
return nb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setNb(String value) {
|
||||
this.nb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rltdDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getRltdDt() {
|
||||
return rltdDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rltdDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setRltdDt(XMLGregorianCalendar value) {
|
||||
this.rltdDt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentLineInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DocumentLineInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DocumentLineIdentification1" maxOccurs="unbounded"/>
|
||||
* <element name="Desc" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max2048Text" minOccurs="0"/>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}RemittanceAmount3" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentLineInformation1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"desc",
|
||||
"amt"
|
||||
})
|
||||
public class DocumentLineInformation1 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected List<DocumentLineIdentification1> id;
|
||||
@XmlElement(name = "Desc", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String desc;
|
||||
@XmlElement(name = "Amt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected RemittanceAmount3 amt;
|
||||
|
||||
/**
|
||||
* Gets the value of the id property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the id property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getId().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link DocumentLineIdentification1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<DocumentLineIdentification1> getId() {
|
||||
if (id == null) {
|
||||
id = new ArrayList<DocumentLineIdentification1>();
|
||||
}
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà desc.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDesc() {
|
||||
return desc;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà desc.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDesc(String value) {
|
||||
this.desc = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RemittanceAmount3 }
|
||||
*
|
||||
*/
|
||||
public RemittanceAmount3 getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RemittanceAmount3 }
|
||||
*
|
||||
*/
|
||||
public void setAmt(RemittanceAmount3 value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentLineType1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DocumentLineType1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CdOrPrtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}DocumentLineType1Choice"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentLineType1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cdOrPrtry",
|
||||
"issr"
|
||||
})
|
||||
public class DocumentLineType1 {
|
||||
|
||||
@XmlElement(name = "CdOrPrtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected DocumentLineType1Choice cdOrPrtry;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DocumentLineType1Choice }
|
||||
*
|
||||
*/
|
||||
public DocumentLineType1Choice getCdOrPrtry() {
|
||||
return cdOrPrtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DocumentLineType1Choice }
|
||||
*
|
||||
*/
|
||||
public void setCdOrPrtry(DocumentLineType1Choice value) {
|
||||
this.cdOrPrtry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentLineType1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DocumentLineType1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalDocumentLineType1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentLineType1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class DocumentLineType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentType3Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="DocumentType3Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="RADM"/>
|
||||
* <enumeration value="RPIN"/>
|
||||
* <enumeration value="FXDR"/>
|
||||
* <enumeration value="DISP"/>
|
||||
* <enumeration value="PUOR"/>
|
||||
* <enumeration value="SCOR"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "DocumentType3Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum DocumentType3Code {
|
||||
|
||||
RADM,
|
||||
RPIN,
|
||||
FXDR,
|
||||
DISP,
|
||||
PUOR,
|
||||
SCOR;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static DocumentType3Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,66 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per DocumentType6Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="DocumentType6Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="MSIN"/>
|
||||
* <enumeration value="CNFA"/>
|
||||
* <enumeration value="DNFA"/>
|
||||
* <enumeration value="CINV"/>
|
||||
* <enumeration value="CREN"/>
|
||||
* <enumeration value="DEBN"/>
|
||||
* <enumeration value="HIRI"/>
|
||||
* <enumeration value="SBIN"/>
|
||||
* <enumeration value="CMCN"/>
|
||||
* <enumeration value="SOAC"/>
|
||||
* <enumeration value="DISP"/>
|
||||
* <enumeration value="BOLD"/>
|
||||
* <enumeration value="VCHR"/>
|
||||
* <enumeration value="AROI"/>
|
||||
* <enumeration value="TSUT"/>
|
||||
* <enumeration value="PUOR"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "DocumentType6Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum DocumentType6Code {
|
||||
|
||||
MSIN,
|
||||
CNFA,
|
||||
DNFA,
|
||||
CINV,
|
||||
CREN,
|
||||
DEBN,
|
||||
HIRI,
|
||||
SBIN,
|
||||
CMCN,
|
||||
SOAC,
|
||||
DISP,
|
||||
BOLD,
|
||||
VCHR,
|
||||
AROI,
|
||||
TSUT,
|
||||
PUOR;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static DocumentType6Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,261 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per Garnishment3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="Garnishment3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Tp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}GarnishmentType1"/>
|
||||
* <element name="Grnshee" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PartyIdentification135" minOccurs="0"/>
|
||||
* <element name="GrnshmtAdmstr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PartyIdentification135" minOccurs="0"/>
|
||||
* <element name="RefNb" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max140Text" minOccurs="0"/>
|
||||
* <element name="Dt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ISODate" minOccurs="0"/>
|
||||
* <element name="RmtdAmt" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
|
||||
* <element name="FmlyMdclInsrncInd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}TrueFalseIndicator" minOccurs="0"/>
|
||||
* <element name="MplyeeTermntnInd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}TrueFalseIndicator" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Garnishment3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"tp",
|
||||
"grnshee",
|
||||
"grnshmtAdmstr",
|
||||
"refNb",
|
||||
"dt",
|
||||
"rmtdAmt",
|
||||
"fmlyMdclInsrncInd",
|
||||
"mplyeeTermntnInd"
|
||||
})
|
||||
public class Garnishment3 {
|
||||
|
||||
@XmlElement(name = "Tp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected GarnishmentType1 tp;
|
||||
@XmlElement(name = "Grnshee", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected PartyIdentification135 grnshee;
|
||||
@XmlElement(name = "GrnshmtAdmstr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected PartyIdentification135 grnshmtAdmstr;
|
||||
@XmlElement(name = "RefNb", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String refNb;
|
||||
@XmlElement(name = "Dt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar dt;
|
||||
@XmlElement(name = "RmtdAmt", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected ActiveOrHistoricCurrencyAndAmount rmtdAmt;
|
||||
@XmlElement(name = "FmlyMdclInsrncInd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected Boolean fmlyMdclInsrncInd;
|
||||
@XmlElement(name = "MplyeeTermntnInd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected Boolean mplyeeTermntnInd;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà tp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GarnishmentType1 }
|
||||
*
|
||||
*/
|
||||
public GarnishmentType1 getTp() {
|
||||
return tp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà tp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GarnishmentType1 }
|
||||
*
|
||||
*/
|
||||
public void setTp(GarnishmentType1 value) {
|
||||
this.tp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grnshee.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PartyIdentification135 }
|
||||
*
|
||||
*/
|
||||
public PartyIdentification135 getGrnshee() {
|
||||
return grnshee;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grnshee.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PartyIdentification135 }
|
||||
*
|
||||
*/
|
||||
public void setGrnshee(PartyIdentification135 value) {
|
||||
this.grnshee = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grnshmtAdmstr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PartyIdentification135 }
|
||||
*
|
||||
*/
|
||||
public PartyIdentification135 getGrnshmtAdmstr() {
|
||||
return grnshmtAdmstr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grnshmtAdmstr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PartyIdentification135 }
|
||||
*
|
||||
*/
|
||||
public void setGrnshmtAdmstr(PartyIdentification135 value) {
|
||||
this.grnshmtAdmstr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà refNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRefNb() {
|
||||
return refNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà refNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRefNb(String value) {
|
||||
this.refNb = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDt() {
|
||||
return dt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDt(XMLGregorianCalendar value) {
|
||||
this.dt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rmtdAmt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount getRmtdAmt() {
|
||||
return rmtdAmt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rmtdAmt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public void setRmtdAmt(ActiveOrHistoricCurrencyAndAmount value) {
|
||||
this.rmtdAmt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà fmlyMdclInsrncInd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isFmlyMdclInsrncInd() {
|
||||
return fmlyMdclInsrncInd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà fmlyMdclInsrncInd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setFmlyMdclInsrncInd(Boolean value) {
|
||||
this.fmlyMdclInsrncInd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mplyeeTermntnInd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public Boolean isMplyeeTermntnInd() {
|
||||
return mplyeeTermntnInd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mplyeeTermntnInd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Boolean }
|
||||
*
|
||||
*/
|
||||
public void setMplyeeTermntnInd(Boolean value) {
|
||||
this.mplyeeTermntnInd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GarnishmentType1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GarnishmentType1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CdOrPrtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}GarnishmentType1Choice"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GarnishmentType1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cdOrPrtry",
|
||||
"issr"
|
||||
})
|
||||
public class GarnishmentType1 {
|
||||
|
||||
@XmlElement(name = "CdOrPrtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected GarnishmentType1Choice cdOrPrtry;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GarnishmentType1Choice }
|
||||
*
|
||||
*/
|
||||
public GarnishmentType1Choice getCdOrPrtry() {
|
||||
return cdOrPrtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdOrPrtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GarnishmentType1Choice }
|
||||
*
|
||||
*/
|
||||
public void setCdOrPrtry(GarnishmentType1Choice value) {
|
||||
this.cdOrPrtry = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GarnishmentType1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GarnishmentType1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalGarnishmentType1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GarnishmentType1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class GarnishmentType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GenericIdentification3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GenericIdentification3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenericIdentification3", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"issr"
|
||||
})
|
||||
public class GenericIdentification3 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GenericIdentification30 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GenericIdentification30">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Exact4AlphaNumericText"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="SchmeNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenericIdentification30", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"issr",
|
||||
"schmeNm"
|
||||
})
|
||||
public class GenericIdentification30 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String issr;
|
||||
@XmlElement(name = "SchmeNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String schmeNm;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà schmeNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSchmeNm() {
|
||||
return schmeNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà schmeNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSchmeNm(String value) {
|
||||
this.schmeNm = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GenericOrganisationIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GenericOrganisationIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="SchmeNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}OrganisationIdentificationSchemeName1Choice" minOccurs="0"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenericOrganisationIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"schmeNm",
|
||||
"issr"
|
||||
})
|
||||
public class GenericOrganisationIdentification1 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "SchmeNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected OrganisationIdentificationSchemeName1Choice schmeNm;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà schmeNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link OrganisationIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public OrganisationIdentificationSchemeName1Choice getSchmeNm() {
|
||||
return schmeNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà schmeNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link OrganisationIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public void setSchmeNm(OrganisationIdentificationSchemeName1Choice value) {
|
||||
this.schmeNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per GenericPersonIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="GenericPersonIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* <element name="SchmeNm" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}PersonIdentificationSchemeName1Choice" minOccurs="0"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "GenericPersonIdentification1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"id",
|
||||
"schmeNm",
|
||||
"issr"
|
||||
})
|
||||
public class GenericPersonIdentification1 {
|
||||
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "SchmeNm", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected PersonIdentificationSchemeName1Choice schmeNm;
|
||||
@XmlElement(name = "Issr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String issr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà schmeNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PersonIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public PersonIdentificationSchemeName1Choice getSchmeNm() {
|
||||
return schmeNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà schmeNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PersonIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public void setSchmeNm(PersonIdentificationSchemeName1Choice value) {
|
||||
this.schmeNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà issr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIssr() {
|
||||
return issr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà issr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIssr(String value) {
|
||||
this.issr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per Instruction3Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="Instruction3Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="CHQB"/>
|
||||
* <enumeration value="HOLD"/>
|
||||
* <enumeration value="PHOB"/>
|
||||
* <enumeration value="TELB"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "Instruction3Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum Instruction3Code {
|
||||
|
||||
CHQB,
|
||||
HOLD,
|
||||
PHOB,
|
||||
TELB;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static Instruction3Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlSchemaType;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per InstructionForCreditorAgent1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="InstructionForCreditorAgent1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Instruction3Code" minOccurs="0"/>
|
||||
* <element name="InstrInf" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max140Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "InstructionForCreditorAgent1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"instrInf"
|
||||
})
|
||||
public class InstructionForCreditorAgent1 {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected Instruction3Code cd;
|
||||
@XmlElement(name = "InstrInf", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String instrInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Instruction3Code }
|
||||
*
|
||||
*/
|
||||
public Instruction3Code getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Instruction3Code }
|
||||
*
|
||||
*/
|
||||
public void setCd(Instruction3Code value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà instrInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInstrInf() {
|
||||
return instrInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà instrInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInstrInf(String value) {
|
||||
this.instrInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,44 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per NamePrefix2Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="NamePrefix2Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="DOCT"/>
|
||||
* <enumeration value="MADM"/>
|
||||
* <enumeration value="MISS"/>
|
||||
* <enumeration value="MIST"/>
|
||||
* <enumeration value="MIKS"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "NamePrefix2Code", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
@XmlEnum
|
||||
public enum NamePrefix2Code {
|
||||
|
||||
DOCT,
|
||||
MADM,
|
||||
MISS,
|
||||
MIST,
|
||||
MIKS;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static NamePrefix2Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,837 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.JAXBElement;
|
||||
import javax.xml.bind.annotation.XmlElementDecl;
|
||||
import javax.xml.bind.annotation.XmlRegistry;
|
||||
import javax.xml.namespace.QName;
|
||||
|
||||
|
||||
/**
|
||||
* This object contains factory methods for each
|
||||
* Java content interface and Java element interface
|
||||
* generated in the it.integry.ems.contabil.sepa.dto.v00_04_01 package.
|
||||
* <p>An ObjectFactory allows you to programatically
|
||||
* construct new instances of the Java representation
|
||||
* for XML content. The Java representation of XML
|
||||
* content can consist of schema derived interfaces
|
||||
* and classes representing the binding of schema
|
||||
* type definitions, element declarations and model
|
||||
* groups. Factory methods for each of these are
|
||||
* provided in this class.
|
||||
*
|
||||
*/
|
||||
@XmlRegistry
|
||||
public class ObjectFactory {
|
||||
|
||||
private final static QName _CBIPaymentRequest_QNAME = new QName("urn:CBI:xsd:CBIPaymentRequest.00.04.01", "CBIPaymentRequest");
|
||||
|
||||
/**
|
||||
* Create a new ObjectFactory that can be used to create new instances of schema derived classes for package: it.integry.ems.contabil.sepa.dto.v00_04_01
|
||||
*
|
||||
*/
|
||||
public ObjectFactory() {
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPaymentRequest000401 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentRequest000401 createCBIPaymentRequest000401() {
|
||||
return new CBIPaymentRequest000401();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxInformation7 }
|
||||
*
|
||||
*/
|
||||
public TaxInformation7 createTaxInformation7() {
|
||||
return new TaxInformation7();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxInformation8 }
|
||||
*
|
||||
*/
|
||||
public TaxInformation8 createTaxInformation8() {
|
||||
return new TaxInformation8();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreditorReferenceType1Choice }
|
||||
*
|
||||
*/
|
||||
public CreditorReferenceType1Choice createCreditorReferenceType1Choice() {
|
||||
return new CreditorReferenceType1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DocumentAdjustment1 }
|
||||
*
|
||||
*/
|
||||
public DocumentAdjustment1 createDocumentAdjustment1() {
|
||||
return new DocumentAdjustment1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GenericOrganisationIdentification1 }
|
||||
*
|
||||
*/
|
||||
public GenericOrganisationIdentification1 createGenericOrganisationIdentification1() {
|
||||
return new GenericOrganisationIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxRecordDetails2 }
|
||||
*
|
||||
*/
|
||||
public TaxRecordDetails2 createTaxRecordDetails2() {
|
||||
return new TaxRecordDetails2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DocumentLineInformation1 }
|
||||
*
|
||||
*/
|
||||
public DocumentLineInformation1 createDocumentLineInformation1() {
|
||||
return new DocumentLineInformation1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PersonIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public PersonIdentificationSchemeName1Choice createPersonIdentificationSchemeName1Choice() {
|
||||
return new PersonIdentificationSchemeName1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link Party38Choice }
|
||||
*
|
||||
*/
|
||||
public Party38Choice createParty38Choice() {
|
||||
return new Party38Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DateAndDateTime2Choice }
|
||||
*
|
||||
*/
|
||||
public DateAndDateTime2Choice createDateAndDateTime2Choice() {
|
||||
return new DateAndDateTime2Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link AddressType3Choice }
|
||||
*
|
||||
*/
|
||||
public AddressType3Choice createAddressType3Choice() {
|
||||
return new AddressType3Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ActiveOrHistoricCurrencyAndAmount }
|
||||
*
|
||||
*/
|
||||
public ActiveOrHistoricCurrencyAndAmount createActiveOrHistoricCurrencyAndAmount() {
|
||||
return new ActiveOrHistoricCurrencyAndAmount();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link StructuredRemittanceInformation16 }
|
||||
*
|
||||
*/
|
||||
public StructuredRemittanceInformation16 createStructuredRemittanceInformation16() {
|
||||
return new StructuredRemittanceInformation16();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIServiceLevel1 }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel1 createCBIServiceLevel1() {
|
||||
return new CBIServiceLevel1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ReferredDocumentType3Choice }
|
||||
*
|
||||
*/
|
||||
public ReferredDocumentType3Choice createReferredDocumentType3Choice() {
|
||||
return new ReferredDocumentType3Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxAmountAndType1 }
|
||||
*
|
||||
*/
|
||||
public TaxAmountAndType1 createTaxAmountAndType1() {
|
||||
return new TaxAmountAndType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIServiceLevel2 }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel2 createCBIServiceLevel2() {
|
||||
return new CBIServiceLevel2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CashAccountType2Choice }
|
||||
*
|
||||
*/
|
||||
public CashAccountType2Choice createCashAccountType2Choice() {
|
||||
return new CashAccountType2Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OrganisationIdentificationSchemeName1Choice }
|
||||
*
|
||||
*/
|
||||
public OrganisationIdentificationSchemeName1Choice createOrganisationIdentificationSchemeName1Choice() {
|
||||
return new OrganisationIdentificationSchemeName1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OrganisationIdentification4 }
|
||||
*
|
||||
*/
|
||||
public OrganisationIdentification4 createOrganisationIdentification4() {
|
||||
return new OrganisationIdentification4();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link Contact4 }
|
||||
*
|
||||
*/
|
||||
public Contact4 createContact4() {
|
||||
return new Contact4();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GenericIdentification3 }
|
||||
*
|
||||
*/
|
||||
public GenericIdentification3 createGenericIdentification3() {
|
||||
return new GenericIdentification3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RemittanceInformation16 }
|
||||
*
|
||||
*/
|
||||
public RemittanceInformation16 createRemittanceInformation16() {
|
||||
return new RemittanceInformation16();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIGenericIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification2 createCBIGenericIdentification2() {
|
||||
return new CBIGenericIdentification2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GarnishmentType1Choice }
|
||||
*
|
||||
*/
|
||||
public GarnishmentType1Choice createGarnishmentType1Choice() {
|
||||
return new GarnishmentType1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIGenericIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIGenericIdentification1 createCBIGenericIdentification1() {
|
||||
return new CBIGenericIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreditorReferenceType2 }
|
||||
*
|
||||
*/
|
||||
public CreditorReferenceType2 createCreditorReferenceType2() {
|
||||
return new CreditorReferenceType2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIAccountIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification1 createCBIAccountIdentification1() {
|
||||
return new CBIAccountIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIGroupHeader }
|
||||
*
|
||||
*/
|
||||
public CBIGroupHeader createCBIGroupHeader() {
|
||||
return new CBIGroupHeader();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPaymentTypeInformation2 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentTypeInformation2 createCBIPaymentTypeInformation2() {
|
||||
return new CBIPaymentTypeInformation2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPaymentTypeInformation1 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentTypeInformation1 createCBIPaymentTypeInformation1() {
|
||||
return new CBIPaymentTypeInformation1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIRemittanceLocationData1 }
|
||||
*
|
||||
*/
|
||||
public CBIRemittanceLocationData1 createCBIRemittanceLocationData1() {
|
||||
return new CBIRemittanceLocationData1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PersonIdentification13 }
|
||||
*
|
||||
*/
|
||||
public PersonIdentification13 createPersonIdentification13() {
|
||||
return new PersonIdentification13();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GenericIdentification30 }
|
||||
*
|
||||
*/
|
||||
public GenericIdentification30 createGenericIdentification30() {
|
||||
return new GenericIdentification30();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public CBIPostalAddress24 createCBIPostalAddress24() {
|
||||
return new CBIPostalAddress24();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DocumentLineType1 }
|
||||
*
|
||||
*/
|
||||
public DocumentLineType1 createDocumentLineType1() {
|
||||
return new DocumentLineType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link InstructionForCreditorAgent1 }
|
||||
*
|
||||
*/
|
||||
public InstructionForCreditorAgent1 createInstructionForCreditorAgent1() {
|
||||
return new InstructionForCreditorAgent1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link Purpose1Choice }
|
||||
*
|
||||
*/
|
||||
public Purpose1Choice createPurpose1Choice() {
|
||||
return new Purpose1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OtherContact1 }
|
||||
*
|
||||
*/
|
||||
public OtherContact1 createOtherContact1() {
|
||||
return new OtherContact1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ReferredDocumentInformation7 }
|
||||
*
|
||||
*/
|
||||
public ReferredDocumentInformation7 createReferredDocumentInformation7() {
|
||||
return new ReferredDocumentInformation7();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPartyIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification1 createCBIPartyIdentification1() {
|
||||
return new CBIPartyIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification2 createCBIPartyIdentification2() {
|
||||
return new CBIPartyIdentification2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPartyIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification3 createCBIPartyIdentification3() {
|
||||
return new CBIPartyIdentification3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DiscountAmountAndType1 }
|
||||
*
|
||||
*/
|
||||
public DiscountAmountAndType1 createDiscountAmountAndType1() {
|
||||
return new DiscountAmountAndType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DocumentLineIdentification1 }
|
||||
*
|
||||
*/
|
||||
public DocumentLineIdentification1 createDocumentLineIdentification1() {
|
||||
return new DocumentLineIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification4 createCBIPartyIdentification4() {
|
||||
return new CBIPartyIdentification4();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPartyIdentification5 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification5 createCBIPartyIdentification5() {
|
||||
return new CBIPartyIdentification5();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIClearingSystemMemberIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIClearingSystemMemberIdentification1 createCBIClearingSystemMemberIdentification1() {
|
||||
return new CBIClearingSystemMemberIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBICashAccount1 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount1 createCBICashAccount1() {
|
||||
return new CBICashAccount1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBICashAccount2 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount2 createCBICashAccount2() {
|
||||
return new CBICashAccount2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIIdType3 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType3 createCBIIdType3() {
|
||||
return new CBIIdType3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBICashAccount3 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount3 createCBICashAccount3() {
|
||||
return new CBICashAccount3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIIdType1 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType1 createCBIIdType1() {
|
||||
return new CBIIdType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIIdType2 }
|
||||
*
|
||||
*/
|
||||
public CBIIdType2 createCBIIdType2() {
|
||||
return new CBIIdType2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxAmountType1Choice }
|
||||
*
|
||||
*/
|
||||
public TaxAmountType1Choice createTaxAmountType1Choice() {
|
||||
return new TaxAmountType1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIAmountType1 }
|
||||
*
|
||||
*/
|
||||
public CBIAmountType1 createCBIAmountType1() {
|
||||
return new CBIAmountType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxAmount2 }
|
||||
*
|
||||
*/
|
||||
public TaxAmount2 createTaxAmount2() {
|
||||
return new TaxAmount2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBICheque1 }
|
||||
*
|
||||
*/
|
||||
public CBICheque1 createCBICheque1() {
|
||||
return new CBICheque1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PaymentIdentification1 }
|
||||
*
|
||||
*/
|
||||
public PaymentIdentification1 createPaymentIdentification1() {
|
||||
return new PaymentIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIOrganisationIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification1 createCBIOrganisationIdentification1() {
|
||||
return new CBIOrganisationIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link OrganisationIdentification29 }
|
||||
*
|
||||
*/
|
||||
public OrganisationIdentification29 createOrganisationIdentification29() {
|
||||
return new OrganisationIdentification29();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPaymentInstructionInformation }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentInstructionInformation createCBIPaymentInstructionInformation() {
|
||||
return new CBIPaymentInstructionInformation();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification3 createCBIFinancialInstitutionIdentification3() {
|
||||
return new CBIFinancialInstitutionIdentification3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIOrganisationIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification2 createCBIOrganisationIdentification2() {
|
||||
return new CBIOrganisationIdentification2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIOrganisationIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification3 createCBIOrganisationIdentification3() {
|
||||
return new CBIOrganisationIdentification3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxRecord2 }
|
||||
*
|
||||
*/
|
||||
public TaxRecord2 createTaxRecord2() {
|
||||
return new TaxRecord2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification1 createCBIFinancialInstitutionIdentification1() {
|
||||
return new CBIFinancialInstitutionIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIOrganisationIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIOrganisationIdentification4 createCBIOrganisationIdentification4() {
|
||||
return new CBIOrganisationIdentification4();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification2 createCBIFinancialInstitutionIdentification2() {
|
||||
return new CBIFinancialInstitutionIdentification2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DiscountAmountType1Choice }
|
||||
*
|
||||
*/
|
||||
public DiscountAmountType1Choice createDiscountAmountType1Choice() {
|
||||
return new DiscountAmountType1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PartyIdentification135 }
|
||||
*
|
||||
*/
|
||||
public PartyIdentification135 createPartyIdentification135() {
|
||||
return new PartyIdentification135();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIPersonIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIPersonIdentification1 createCBIPersonIdentification1() {
|
||||
return new CBIPersonIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link ReferredDocumentType4 }
|
||||
*
|
||||
*/
|
||||
public ReferredDocumentType4 createReferredDocumentType4() {
|
||||
return new ReferredDocumentType4();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIRemittanceLocation1 }
|
||||
*
|
||||
*/
|
||||
public CBIRemittanceLocation1 createCBIRemittanceLocation1() {
|
||||
return new CBIRemittanceLocation1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GenericPersonIdentification1 }
|
||||
*
|
||||
*/
|
||||
public GenericPersonIdentification1 createGenericPersonIdentification1() {
|
||||
return new GenericPersonIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CategoryPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public CategoryPurpose1Choice createCategoryPurpose1Choice() {
|
||||
return new CategoryPurpose1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxParty1 }
|
||||
*
|
||||
*/
|
||||
public TaxParty1 createTaxParty1() {
|
||||
return new TaxParty1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIStructuredRegulatoryReporting1 }
|
||||
*
|
||||
*/
|
||||
public CBIStructuredRegulatoryReporting1 createCBIStructuredRegulatoryReporting1() {
|
||||
return new CBIStructuredRegulatoryReporting1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxParty2 }
|
||||
*
|
||||
*/
|
||||
public TaxParty2 createTaxParty2() {
|
||||
return new TaxParty2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link GarnishmentType1 }
|
||||
*
|
||||
*/
|
||||
public GarnishmentType1 createGarnishmentType1() {
|
||||
return new GarnishmentType1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DocumentLineType1Choice }
|
||||
*
|
||||
*/
|
||||
public DocumentLineType1Choice createDocumentLineType1Choice() {
|
||||
return new DocumentLineType1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RemittanceAmount3 }
|
||||
*
|
||||
*/
|
||||
public RemittanceAmount3 createRemittanceAmount3() {
|
||||
return new RemittanceAmount3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link RemittanceAmount2 }
|
||||
*
|
||||
*/
|
||||
public RemittanceAmount2 createRemittanceAmount2() {
|
||||
return new RemittanceAmount2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIRegulatoryReporting1 }
|
||||
*
|
||||
*/
|
||||
public CBIRegulatoryReporting1 createCBIRegulatoryReporting1() {
|
||||
return new CBIRegulatoryReporting1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link PostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public PostalAddress24 createPostalAddress24() {
|
||||
return new PostalAddress24();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DatePeriod2 }
|
||||
*
|
||||
*/
|
||||
public DatePeriod2 createDatePeriod2() {
|
||||
return new DatePeriod2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxAuthorisation1 }
|
||||
*
|
||||
*/
|
||||
public TaxAuthorisation1 createTaxAuthorisation1() {
|
||||
return new TaxAuthorisation1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link TaxPeriod2 }
|
||||
*
|
||||
*/
|
||||
public TaxPeriod2 createTaxPeriod2() {
|
||||
return new TaxPeriod2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link DateAndPlaceOfBirth1 }
|
||||
*
|
||||
*/
|
||||
public DateAndPlaceOfBirth1 createDateAndPlaceOfBirth1() {
|
||||
return new DateAndPlaceOfBirth1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIBranchAndFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification2 createCBIBranchAndFinancialInstitutionIdentification2() {
|
||||
return new CBIBranchAndFinancialInstitutionIdentification2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification3 createCBIBranchAndFinancialInstitutionIdentification3() {
|
||||
return new CBIBranchAndFinancialInstitutionIdentification3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIParty1Choice }
|
||||
*
|
||||
*/
|
||||
public CBIParty1Choice createCBIParty1Choice() {
|
||||
return new CBIParty1Choice();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBIBranchAndFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification1 createCBIBranchAndFinancialInstitutionIdentification1() {
|
||||
return new CBIBranchAndFinancialInstitutionIdentification1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBILocalInstrument2 }
|
||||
*
|
||||
*/
|
||||
public CBILocalInstrument2 createCBILocalInstrument2() {
|
||||
return new CBILocalInstrument2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBILocalInstrument1 }
|
||||
*
|
||||
*/
|
||||
public CBILocalInstrument1 createCBILocalInstrument1() {
|
||||
return new CBILocalInstrument1();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link Garnishment3 }
|
||||
*
|
||||
*/
|
||||
public Garnishment3 createGarnishment3() {
|
||||
return new Garnishment3();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CreditorReferenceInformation2 }
|
||||
*
|
||||
*/
|
||||
public CreditorReferenceInformation2 createCreditorReferenceInformation2() {
|
||||
return new CreditorReferenceInformation2();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link CBICreditTransferTransactionInformation }
|
||||
*
|
||||
*/
|
||||
public CBICreditTransferTransactionInformation createCBICreditTransferTransactionInformation() {
|
||||
return new CBICreditTransferTransactionInformation();
|
||||
}
|
||||
|
||||
/**
|
||||
* Create an instance of {@link JAXBElement }{@code <}{@link CBIPaymentRequest000401 }{@code >}}
|
||||
*
|
||||
*/
|
||||
@XmlElementDecl(namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", name = "CBIPaymentRequest")
|
||||
public JAXBElement<CBIPaymentRequest000401> createCBIPaymentRequest(CBIPaymentRequest000401 value) {
|
||||
return new JAXBElement<CBIPaymentRequest000401>(_CBIPaymentRequest_QNAME, CBIPaymentRequest000401 .class, null, value);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per OrganisationIdentification29 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OrganisationIdentification29">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AnyBIC" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AnyBICDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}GenericOrganisationIdentification1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OrganisationIdentification29", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"anyBIC",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class OrganisationIdentification29 {
|
||||
|
||||
@XmlElement(name = "AnyBIC", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "LEI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<GenericOrganisationIdentification1> othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà anyBIC.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAnyBIC() {
|
||||
return anyBIC;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà anyBIC.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAnyBIC(String value) {
|
||||
this.anyBIC = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lei.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEI() {
|
||||
return lei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lei.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEI(String value) {
|
||||
this.lei = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the othr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the othr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOthr().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link GenericOrganisationIdentification1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<GenericOrganisationIdentification1> getOthr() {
|
||||
if (othr == null) {
|
||||
othr = new ArrayList<GenericOrganisationIdentification1>();
|
||||
}
|
||||
return this.othr;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per OrganisationIdentification4 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OrganisationIdentification4">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="AnyBIC" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}AnyBICDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}GenericOrganisationIdentification1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OrganisationIdentification4", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"anyBIC",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class OrganisationIdentification4 {
|
||||
|
||||
@XmlElement(name = "AnyBIC", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "LEI", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected List<GenericOrganisationIdentification1> othr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà anyBIC.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getAnyBIC() {
|
||||
return anyBIC;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà anyBIC.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setAnyBIC(String value) {
|
||||
this.anyBIC = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lei.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getLEI() {
|
||||
return lei;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lei.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setLEI(String value) {
|
||||
this.lei = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the othr property.
|
||||
*
|
||||
* <p>
|
||||
* This accessor method returns a reference to the live list,
|
||||
* not a snapshot. Therefore any modification you make to the
|
||||
* returned list will be present inside the JAXB object.
|
||||
* This is why there is not a <CODE>set</CODE> method for the othr property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOthr().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link GenericOrganisationIdentification1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<GenericOrganisationIdentification1> getOthr() {
|
||||
if (othr == null) {
|
||||
othr = new ArrayList<GenericOrganisationIdentification1>();
|
||||
}
|
||||
return this.othr;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per OrganisationIdentificationSchemeName1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OrganisationIdentificationSchemeName1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}ExternalOrganisationIdentification1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OrganisationIdentificationSchemeName1Choice", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class OrganisationIdentificationSchemeName1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String prtry;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setCd(String value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtry.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPrtry() {
|
||||
return prtry;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtry.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPrtry(String value) {
|
||||
this.prtry = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.Bonifico_v00_04_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlAccessType;
|
||||
import javax.xml.bind.annotation.XmlAccessorType;
|
||||
import javax.xml.bind.annotation.XmlElement;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per OtherContact1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="OtherContact1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ChanlTp" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max4Text"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBIPaymentRequest.00.04.01}Max128Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "OtherContact1", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", propOrder = {
|
||||
"chanlTp",
|
||||
"id"
|
||||
})
|
||||
public class OtherContact1 {
|
||||
|
||||
@XmlElement(name = "ChanlTp", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01", required = true)
|
||||
protected String chanlTp;
|
||||
@XmlElement(name = "Id", namespace = "urn:CBI:xsd:CBIPaymentRequest.00.04.01")
|
||||
protected String id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chanlTp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChanlTp() {
|
||||
return chanlTp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chanlTp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChanlTp(String value) {
|
||||
this.chanlTp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setId(String value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user