Compare commits
2 Commits
feature-re
...
feature/SD
| Author | SHA1 | Date | |
|---|---|---|---|
| 21347036cc | |||
| 67170a87ca |
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 AccountIdentification3Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AccountIdentification3Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="IBAN" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}IBAN2007Identifier"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AccountIdentification3Choice", propOrder = {
|
||||
"iban"
|
||||
})
|
||||
public class AccountIdentification3Choice {
|
||||
|
||||
@XmlElement(name = "IBAN", 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,88 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 ActiveCurrencyAndAmount complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ActiveCurrencyAndAmount">
|
||||
* <simpleContent>
|
||||
* <extension base="<urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01>ActiveCurrencyAndAmount_SimpleType">
|
||||
* <attribute name="Ccy" use="required" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveCurrencyCode" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ActiveCurrencyAndAmount", propOrder = {
|
||||
"value"
|
||||
})
|
||||
public class ActiveCurrencyAndAmount {
|
||||
|
||||
@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,88 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01>CBIActiveOrHistoricCurrencyAndAmount_SimpleType">
|
||||
* <attribute name="Ccy" use="required" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveOrHistoricCurrencyCode" />
|
||||
* </extension>
|
||||
* </simpleContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ActiveOrHistoricCurrencyAndAmount", 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.SSD_v00_01_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")
|
||||
@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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}AddressType2Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}GenericIdentification30"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AddressType3Choice", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class AddressType3Choice {
|
||||
|
||||
@XmlElement(name = "Cd")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected AddressType2Code cd;
|
||||
@XmlElement(name = "Prtry")
|
||||
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,261 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 AmendmentInformationDetails1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="AmendmentInformationDetails1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgnlMndtId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="OrgnlCdtrSchmeId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification6" minOccurs="0"/>
|
||||
* <element name="OrgnlCdtrAgt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}BranchAndFinancialInstitutionIdentification4" minOccurs="0"/>
|
||||
* <element name="OrgnlDbtr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification4" minOccurs="0"/>
|
||||
* <element name="OrgnlDbtrAcct" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBI2CashAccount7" minOccurs="0"/>
|
||||
* <element name="OrgnlDbtrAgt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIBranchAndFinancialInstitutionIdentification2" minOccurs="0"/>
|
||||
* <element name="OrgnlFnlColltnDt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODate" minOccurs="0"/>
|
||||
* <element name="OrgnlFrqcy" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Frequency36Choice" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "AmendmentInformationDetails1", propOrder = {
|
||||
"orgnlMndtId",
|
||||
"orgnlCdtrSchmeId",
|
||||
"orgnlCdtrAgt",
|
||||
"orgnlDbtr",
|
||||
"orgnlDbtrAcct",
|
||||
"orgnlDbtrAgt",
|
||||
"orgnlFnlColltnDt",
|
||||
"orgnlFrqcy"
|
||||
})
|
||||
public class AmendmentInformationDetails1 {
|
||||
|
||||
@XmlElement(name = "OrgnlMndtId")
|
||||
protected String orgnlMndtId;
|
||||
@XmlElement(name = "OrgnlCdtrSchmeId")
|
||||
protected CBIPartyIdentification6 orgnlCdtrSchmeId;
|
||||
@XmlElement(name = "OrgnlCdtrAgt")
|
||||
protected BranchAndFinancialInstitutionIdentification4 orgnlCdtrAgt;
|
||||
@XmlElement(name = "OrgnlDbtr")
|
||||
protected CBIPartyIdentification4 orgnlDbtr;
|
||||
@XmlElement(name = "OrgnlDbtrAcct")
|
||||
protected CBI2CashAccount7 orgnlDbtrAcct;
|
||||
@XmlElement(name = "OrgnlDbtrAgt")
|
||||
protected CBIBranchAndFinancialInstitutionIdentification2 orgnlDbtrAgt;
|
||||
@XmlElement(name = "OrgnlFnlColltnDt")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar orgnlFnlColltnDt;
|
||||
@XmlElement(name = "OrgnlFrqcy")
|
||||
protected Frequency36Choice orgnlFrqcy;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlMndtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlMndtId() {
|
||||
return orgnlMndtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlMndtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlMndtId(String value) {
|
||||
this.orgnlMndtId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlCdtrSchmeId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification6 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification6 getOrgnlCdtrSchmeId() {
|
||||
return orgnlCdtrSchmeId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlCdtrSchmeId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification6 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlCdtrSchmeId(CBIPartyIdentification6 value) {
|
||||
this.orgnlCdtrSchmeId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlCdtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BranchAndFinancialInstitutionIdentification4 }
|
||||
*
|
||||
*/
|
||||
public BranchAndFinancialInstitutionIdentification4 getOrgnlCdtrAgt() {
|
||||
return orgnlCdtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlCdtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BranchAndFinancialInstitutionIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlCdtrAgt(BranchAndFinancialInstitutionIdentification4 value) {
|
||||
this.orgnlCdtrAgt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlDbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification4 getOrgnlDbtr() {
|
||||
return orgnlDbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlDbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlDbtr(CBIPartyIdentification4 value) {
|
||||
this.orgnlDbtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlDbtrAcct.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBI2CashAccount7 }
|
||||
*
|
||||
*/
|
||||
public CBI2CashAccount7 getOrgnlDbtrAcct() {
|
||||
return orgnlDbtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlDbtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBI2CashAccount7 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlDbtrAcct(CBI2CashAccount7 value) {
|
||||
this.orgnlDbtrAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlDbtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification2 getOrgnlDbtrAgt() {
|
||||
return orgnlDbtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlDbtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlDbtrAgt(CBIBranchAndFinancialInstitutionIdentification2 value) {
|
||||
this.orgnlDbtrAgt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlFnlColltnDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getOrgnlFnlColltnDt() {
|
||||
return orgnlFnlColltnDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlFnlColltnDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlFnlColltnDt(XMLGregorianCalendar value) {
|
||||
this.orgnlFnlColltnDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlFrqcy.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link Frequency36Choice }
|
||||
*
|
||||
*/
|
||||
public Frequency36Choice getOrgnlFrqcy() {
|
||||
return orgnlFrqcy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlFrqcy.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link Frequency36Choice }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlFrqcy(Frequency36Choice value) {
|
||||
this.orgnlFrqcy = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 BranchAndFinancialInstitutionIdentification4 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BranchAndFinancialInstitutionIdentification4">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FinInstnId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIFinancialInstitutionIdentification7"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BranchAndFinancialInstitutionIdentification4", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class BranchAndFinancialInstitutionIdentification4 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", required = true)
|
||||
protected CBIFinancialInstitutionIdentification7 finInstnId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIFinancialInstitutionIdentification7 }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification7 getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIFinancialInstitutionIdentification7 }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(CBIFinancialInstitutionIdentification7 value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 BranchAndFinancialInstitutionIdentification6 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BranchAndFinancialInstitutionIdentification6">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="FinInstnId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}FinancialInstitutionIdentification18"/>
|
||||
* <element name="BrnchId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}BranchData3" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BranchAndFinancialInstitutionIdentification6", propOrder = {
|
||||
"finInstnId",
|
||||
"brnchId"
|
||||
})
|
||||
public class BranchAndFinancialInstitutionIdentification6 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", required = true)
|
||||
protected FinancialInstitutionIdentification18 finInstnId;
|
||||
@XmlElement(name = "BrnchId")
|
||||
protected BranchData3 brnchId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link FinancialInstitutionIdentification18 }
|
||||
*
|
||||
*/
|
||||
public FinancialInstitutionIdentification18 getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link FinancialInstitutionIdentification18 }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(FinancialInstitutionIdentification18 value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà brnchId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BranchData3 }
|
||||
*
|
||||
*/
|
||||
public BranchData3 getBrnchId() {
|
||||
return brnchId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà brnchId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BranchData3 }
|
||||
*
|
||||
*/
|
||||
public void setBrnchId(BranchData3 value) {
|
||||
this.brnchId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 BranchData3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="BranchData3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max140Text" minOccurs="0"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PostalAddress24" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "BranchData3", propOrder = {
|
||||
"id",
|
||||
"lei",
|
||||
"nm",
|
||||
"pstlAdr"
|
||||
})
|
||||
public class BranchData3 {
|
||||
|
||||
@XmlElement(name = "Id")
|
||||
protected String id;
|
||||
@XmlElement(name = "LEI")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Nm")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr")
|
||||
protected PostalAddress24 pstlAdr;
|
||||
|
||||
/**
|
||||
* 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à 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à 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 PostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public PostalAddress24 getPstlAdr() {
|
||||
return pstlAdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pstlAdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PostalAddress24 }
|
||||
*
|
||||
*/
|
||||
public void setPstlAdr(PostalAddress24 value) {
|
||||
this.pstlAdr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBI2CashAccount7 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBI2CashAccount7">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIAccountIdentification3Choice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBI2CashAccount7", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBI2CashAccount7 {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected CBIAccountIdentification3Choice id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification3Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIAccountIdentification3Choice value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBI3CashAccount7 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBI3CashAccount7">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIAccountIdentification3Choice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBI3CashAccount7", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBI3CashAccount7 {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected CBIAccountIdentification3Choice id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public CBIAccountIdentification3Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIAccountIdentification3Choice value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIAccountIdentification3Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIAccountIdentification3Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="IBAN" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}IBAN2007Identifier"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBICashAccount_Othr"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIAccountIdentification3Choice", propOrder = {
|
||||
"iban",
|
||||
"othr"
|
||||
})
|
||||
public class CBIAccountIdentification3Choice {
|
||||
|
||||
@XmlElement(name = "IBAN")
|
||||
protected String iban;
|
||||
@XmlElement(name = "Othr")
|
||||
protected CBICashAccountOthr othr;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBICashAccountOthr }
|
||||
*
|
||||
*/
|
||||
public CBICashAccountOthr getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccountOthr }
|
||||
*
|
||||
*/
|
||||
public void setOthr(CBICashAccountOthr value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIAmountType2Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIAmountType2Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="InstdAmt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIAmountType2Choice", propOrder = {
|
||||
"instdAmt"
|
||||
})
|
||||
public class CBIAmountType2Choice {
|
||||
|
||||
@XmlElement(name = "InstdAmt", 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,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIBdySDDReq.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBdySDDReq.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PhyMsgInf" type="{urn:CBI:xsd:CBIBdySDDReq.00.01.01}PhysicalMsgInfoType"/>
|
||||
* <element name="CBIEnvelSDDReqLogMsg" type="{urn:CBI:xsd:CBIBdySDDReq.00.01.01}CBIEnvelSDDLogMsg.00.01.01" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBdySDDReq.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDReq.00.01.01", propOrder = {
|
||||
"phyMsgInf",
|
||||
"cbiEnvelSDDReqLogMsg"
|
||||
})
|
||||
public class CBIBdySDDReq000101 {
|
||||
|
||||
@XmlElement(name = "PhyMsgInf", required = true)
|
||||
protected PhysicalMsgInfoType phyMsgInf;
|
||||
@XmlElement(name = "CBIEnvelSDDReqLogMsg", required = true)
|
||||
protected List<CBIEnvelSDDLogMsg000101> cbiEnvelSDDReqLogMsg;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PhysicalMsgInfoType }
|
||||
*
|
||||
*/
|
||||
public PhysicalMsgInfoType getPhyMsgInf() {
|
||||
return phyMsgInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PhysicalMsgInfoType }
|
||||
*
|
||||
*/
|
||||
public void setPhyMsgInf(PhysicalMsgInfoType value) {
|
||||
this.phyMsgInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cbiEnvelSDDReqLogMsg 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 cbiEnvelSDDReqLogMsg property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCBIEnvelSDDReqLogMsg().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIEnvelSDDLogMsg000101 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIEnvelSDDLogMsg000101> getCBIEnvelSDDReqLogMsg() {
|
||||
if (cbiEnvelSDDReqLogMsg == null) {
|
||||
cbiEnvelSDDReqLogMsg = new ArrayList<CBIEnvelSDDLogMsg000101>();
|
||||
}
|
||||
return this.cbiEnvelSDDReqLogMsg;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIBdySDDStsRpt.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBdySDDStsRpt.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PhyMsgInf" type="{urn:CBI:xsd:CBIBdySDDStsRpt.00.01.01}PhyMsgInfType"/>
|
||||
* <element name="CBIEnvelSDDStsRptLogMsg" type="{urn:CBI:xsd:CBIBdySDDStsRpt.00.01.01}CBIEnvelSDDStsRptLogMsg.00.01.01" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBdySDDStsRpt.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDStsRpt.00.01.01", propOrder = {
|
||||
"phyMsgInf",
|
||||
"cbiEnvelSDDStsRptLogMsg"
|
||||
})
|
||||
public class CBIBdySDDStsRpt000101 {
|
||||
|
||||
@XmlElement(name = "PhyMsgInf", required = true)
|
||||
protected PhyMsgInfType phyMsgInf;
|
||||
@XmlElement(name = "CBIEnvelSDDStsRptLogMsg", required = true)
|
||||
protected List<CBIEnvelSDDStsRptLogMsg000101> cbiEnvelSDDStsRptLogMsg;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PhyMsgInfType }
|
||||
*
|
||||
*/
|
||||
public PhyMsgInfType getPhyMsgInf() {
|
||||
return phyMsgInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PhyMsgInfType }
|
||||
*
|
||||
*/
|
||||
public void setPhyMsgInf(PhyMsgInfType value) {
|
||||
this.phyMsgInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cbiEnvelSDDStsRptLogMsg 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 cbiEnvelSDDStsRptLogMsg property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCBIEnvelSDDStsRptLogMsg().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIEnvelSDDStsRptLogMsg000101 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIEnvelSDDStsRptLogMsg000101> getCBIEnvelSDDStsRptLogMsg() {
|
||||
if (cbiEnvelSDDStsRptLogMsg == null) {
|
||||
cbiEnvelSDDStsRptLogMsg = new ArrayList<CBIEnvelSDDStsRptLogMsg000101>();
|
||||
}
|
||||
return this.cbiEnvelSDDStsRptLogMsg;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIBdySDDTechValSts.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIBdySDDTechValSts.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PhyMsgInf" type="{urn:CBI:xsd:CBIBdySDDTechValSts.00.01.01}PhyMsgInfType"/>
|
||||
* <element name="CBIEnvelSDDTechValStsLogMsg" type="{urn:CBI:xsd:CBIBdySDDTechValSts.00.01.01}CBIEnvelSDDTechValStsLogMsg.00.01.01" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBdySDDTechValSts.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDTechValSts.00.01.01", propOrder = {
|
||||
"phyMsgInf",
|
||||
"cbiEnvelSDDTechValStsLogMsg"
|
||||
})
|
||||
public class CBIBdySDDTechValSts000101 {
|
||||
|
||||
@XmlElement(name = "PhyMsgInf", required = true)
|
||||
protected PhyMsgInfType phyMsgInf;
|
||||
@XmlElement(name = "CBIEnvelSDDTechValStsLogMsg")
|
||||
protected List<CBIEnvelSDDTechValStsLogMsg000101> cbiEnvelSDDTechValStsLogMsg;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PhyMsgInfType }
|
||||
*
|
||||
*/
|
||||
public PhyMsgInfType getPhyMsgInf() {
|
||||
return phyMsgInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà phyMsgInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PhyMsgInfType }
|
||||
*
|
||||
*/
|
||||
public void setPhyMsgInf(PhyMsgInfType value) {
|
||||
this.phyMsgInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the cbiEnvelSDDTechValStsLogMsg 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 cbiEnvelSDDTechValStsLogMsg property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getCBIEnvelSDDTechValStsLogMsg().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIEnvelSDDTechValStsLogMsg000101 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIEnvelSDDTechValStsLogMsg000101> getCBIEnvelSDDTechValStsLogMsg() {
|
||||
if (cbiEnvelSDDTechValStsLogMsg == null) {
|
||||
cbiEnvelSDDTechValStsLogMsg = new ArrayList<CBIEnvelSDDTechValStsLogMsg000101>();
|
||||
}
|
||||
return this.cbiEnvelSDDTechValStsLogMsg;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIFinancialInstitutionIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification1", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification1 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIFinancialInstitutionIdentification2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification2", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification2 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIFinancialInstitutionIdentification5Choice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIBranchAndFinancialInstitutionIdentification3", propOrder = {
|
||||
"finInstnId"
|
||||
})
|
||||
public class CBIBranchAndFinancialInstitutionIdentification3 {
|
||||
|
||||
@XmlElement(name = "FinInstnId", required = true)
|
||||
protected CBIFinancialInstitutionIdentification5Choice finInstnId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà finInstnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIFinancialInstitutionIdentification5Choice }
|
||||
*
|
||||
*/
|
||||
public CBIFinancialInstitutionIdentification5Choice getFinInstnId() {
|
||||
return finInstnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà finInstnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIFinancialInstitutionIdentification5Choice }
|
||||
*
|
||||
*/
|
||||
public void setFinInstnId(CBIFinancialInstitutionIdentification5Choice value) {
|
||||
this.finInstnId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBICashAccount7 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICashAccount7">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}AccountIdentification3Choice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICashAccount7", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBICashAccount7 {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected AccountIdentification3Choice id;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà id.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link AccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public AccountIdentification3Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link AccountIdentification3Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(AccountIdentification3Choice value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBICashAccount_Othr complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBICashAccount_Othr">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBICashAccount_Othr", propOrder = {
|
||||
"id"
|
||||
})
|
||||
public class CBICashAccountOthr {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected String id;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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")
|
||||
@XmlEnum
|
||||
public enum CBIChargeBearerTypeCode {
|
||||
|
||||
SLEV;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIChargeBearerTypeCode fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIClearingSystemMemberIdentification1", propOrder = {
|
||||
"mmbId"
|
||||
})
|
||||
public class CBIClearingSystemMemberIdentification1 {
|
||||
|
||||
@XmlElement(name = "MmbId", 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,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIEnvelSDDLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIEnvelSDDLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="CBISDDReqLogMsg" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBISDDReqLogMsg.00.01.01"/>
|
||||
* <element name="CBISgnInf" type="{urn:CBI:xsd:CBISgnInf.001.04}CBISgnInf.001.04"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIEnvelSDDLogMsg.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDReq.00.01.01", propOrder = {
|
||||
"cbisddReqLogMsg",
|
||||
"cbiSgnInf"
|
||||
})
|
||||
public class CBIEnvelSDDLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBISDDReqLogMsg")
|
||||
protected CBISDDReqLogMsg000101 cbisddReqLogMsg;
|
||||
@XmlElement(name = "CBISgnInf")
|
||||
protected CBISgnInf00104 cbiSgnInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbisddReqLogMsg.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISDDReqLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public CBISDDReqLogMsg000101 getCBISDDReqLogMsg() {
|
||||
return cbisddReqLogMsg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbisddReqLogMsg.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISDDReqLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBISDDReqLogMsg(CBISDDReqLogMsg000101 value) {
|
||||
this.cbisddReqLogMsg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public CBISgnInf00104 getCBISgnInf() {
|
||||
return cbiSgnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public void setCBISgnInf(CBISgnInf00104 value) {
|
||||
this.cbiSgnInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIEnvelSDDStsRptLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIEnvelSDDStsRptLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="CBISDDStsRptLogMsg" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBISDDStsRptLogMsg.00.01.01"/>
|
||||
* <element name="CBISgnInf" type="{urn:CBI:xsd:CBISgnInf.001.04}CBISgnInf.001.04"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIEnvelSDDStsRptLogMsg.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDStsRpt.00.01.01", propOrder = {
|
||||
"cbisddStsRptLogMsg",
|
||||
"cbiSgnInf"
|
||||
})
|
||||
public class CBIEnvelSDDStsRptLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBISDDStsRptLogMsg")
|
||||
protected CBISDDStsRptLogMsg000101 cbisddStsRptLogMsg;
|
||||
@XmlElement(name = "CBISgnInf")
|
||||
protected CBISgnInf00104 cbiSgnInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbisddStsRptLogMsg.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISDDStsRptLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public CBISDDStsRptLogMsg000101 getCBISDDStsRptLogMsg() {
|
||||
return cbisddStsRptLogMsg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbisddStsRptLogMsg.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISDDStsRptLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBISDDStsRptLogMsg(CBISDDStsRptLogMsg000101 value) {
|
||||
this.cbisddStsRptLogMsg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public CBISgnInf00104 getCBISgnInf() {
|
||||
return cbiSgnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public void setCBISgnInf(CBISgnInf00104 value) {
|
||||
this.cbiSgnInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIEnvelSDDTechValStsLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIEnvelSDDTechValStsLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="CBISDDTechValStsLogMsg" type="{urn:CBI:xsd:CBISDDTechValStsLogMsg.00.01.01}CBISDDTechValStsLogMsg.00.01.01"/>
|
||||
* <element name="CBISgnInf" type="{urn:CBI:xsd:CBISgnInf.001.04}CBISgnInf.001.04"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIEnvelSDDTechValStsLogMsg.00.01.01", namespace = "urn:CBI:xsd:CBIBdySDDTechValSts.00.01.01", propOrder = {
|
||||
"cbisddTechValStsLogMsg",
|
||||
"cbiSgnInf"
|
||||
})
|
||||
public class CBIEnvelSDDTechValStsLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBISDDTechValStsLogMsg")
|
||||
protected CBISDDTechValStsLogMsg000101 cbisddTechValStsLogMsg;
|
||||
@XmlElement(name = "CBISgnInf")
|
||||
protected CBISgnInf00104 cbiSgnInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbisddTechValStsLogMsg.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISDDTechValStsLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public CBISDDTechValStsLogMsg000101 getCBISDDTechValStsLogMsg() {
|
||||
return cbisddTechValStsLogMsg;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbisddTechValStsLogMsg.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISDDTechValStsLogMsg000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBISDDTechValStsLogMsg(CBISDDTechValStsLogMsg000101 value) {
|
||||
this.cbisddTechValStsLogMsg = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public CBISgnInf00104 getCBISgnInf() {
|
||||
return cbiSgnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiSgnInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBISgnInf00104 }
|
||||
*
|
||||
*/
|
||||
public void setCBISgnInf(CBISgnInf00104 value) {
|
||||
this.cbiSgnInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIClearingSystemMemberIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification1", propOrder = {
|
||||
"clrSysMmbId"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification1 {
|
||||
|
||||
@XmlElement(name = "ClrSysMmbId", 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,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}BICFIDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="ClrSysMmbId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIClearingSystemMemberIdentification1" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}GenericFinancialIdentification1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification2", propOrder = {
|
||||
"bicfi",
|
||||
"clrSysMmbId",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification2 {
|
||||
|
||||
@XmlElement(name = "BICFI")
|
||||
protected String bicfi;
|
||||
@XmlElement(name = "ClrSysMmbId")
|
||||
protected CBIClearingSystemMemberIdentification1 clrSysMmbId;
|
||||
@XmlElement(name = "LEI")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr")
|
||||
protected GenericFinancialIdentification1 othr;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà othr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GenericFinancialIdentification1 }
|
||||
*
|
||||
*/
|
||||
public GenericFinancialIdentification1 getOthr() {
|
||||
return othr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà othr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GenericFinancialIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setOthr(GenericFinancialIdentification1 value) {
|
||||
this.othr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIFinancialInstitutionIdentification5Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification5Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BICFI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}BICFIDec2014Identifier" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification5Choice", propOrder = {
|
||||
"bicfi"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification5Choice {
|
||||
|
||||
@XmlElement(name = "BICFI")
|
||||
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,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIFinancialInstitutionIdentification6_3 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification6_3">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PrtryId" type="{urn:CBI:xsd:CBISDDStsRptCtrlLogMsg.00.01.01}GenericIdentification4"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification6_3", propOrder = {
|
||||
"prtryId"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification63 {
|
||||
|
||||
@XmlElement(name = "PrtryId", required = true)
|
||||
protected GenericIdentification4 prtryId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prtryId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link GenericIdentification4 }
|
||||
*
|
||||
*/
|
||||
public GenericIdentification4 getPrtryId() {
|
||||
return prtryId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prtryId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link GenericIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setPrtryId(GenericIdentification4 value) {
|
||||
this.prtryId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIFinancialInstitutionIdentification7 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIFinancialInstitutionIdentification7">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="BICFI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}BICFIDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="ClrSysMmbId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIClearingSystemMemberIdentification1" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}LEIIdentifier" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIFinancialInstitutionIdentification7", propOrder = {
|
||||
"bicfi",
|
||||
"clrSysMmbId",
|
||||
"lei"
|
||||
})
|
||||
public class CBIFinancialInstitutionIdentification7 {
|
||||
|
||||
@XmlElement(name = "BICFI")
|
||||
protected String bicfi;
|
||||
@XmlElement(name = "ClrSysMmbId")
|
||||
protected CBIClearingSystemMemberIdentification1 clrSysMmbId;
|
||||
@XmlElement(name = "LEI")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGenericIdentification1", propOrder = {
|
||||
"id",
|
||||
"issr"
|
||||
})
|
||||
public class CBIGenericIdentification1 {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "Issr")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="SchmeNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PersonIdentificationSchemeName1Choice" minOccurs="0"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGenericIdentification2", propOrder = {
|
||||
"id",
|
||||
"schmeNm",
|
||||
"issr"
|
||||
})
|
||||
public class CBIGenericIdentification2 {
|
||||
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected String id;
|
||||
@XmlElement(name = "SchmeNm")
|
||||
protected PersonIdentificationSchemeName1Choice schmeNm;
|
||||
@XmlElement(name = "Issr")
|
||||
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,178 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIGroupHeader2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIGroupHeader2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MsgId" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="CreDtTm" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}ISODateTime"/>
|
||||
* <element name="NbOfTxs" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max15NumericText"/>
|
||||
* <element name="CtrlSum" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIDecimalNumber"/>
|
||||
* <element name="InitgPty" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPartyIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIGroupHeader2", propOrder = {
|
||||
"msgId",
|
||||
"creDtTm",
|
||||
"nbOfTxs",
|
||||
"ctrlSum",
|
||||
"initgPty"
|
||||
})
|
||||
public class CBIGroupHeader2 {
|
||||
|
||||
@XmlElement(name = "MsgId", required = true)
|
||||
protected String msgId;
|
||||
@XmlElement(name = "CreDtTm", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar creDtTm;
|
||||
@XmlElement(name = "NbOfTxs", required = true)
|
||||
protected String nbOfTxs;
|
||||
@XmlElement(name = "CtrlSum", required = true)
|
||||
protected BigDecimal ctrlSum;
|
||||
@XmlElement(name = "InitgPty", required = true)
|
||||
protected CBIPartyIdentification1 initgPty;
|
||||
|
||||
/**
|
||||
* 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,176 @@
|
||||
<?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) -->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="urn:CBI:xsd:CBIHdrSrv.001.07"
|
||||
targetNamespace="urn:CBI:xsd:CBIHdrSrv.001.07" elementFormDefault="qualified">
|
||||
<xs:element name="CBIHdrSrv" type="CBIHdrSrv.001.07">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Header di Servizio incluso nella release 6.15 della documentazione Parte Generale.
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:complexType name="CBIHdrSrv.001.07">
|
||||
<xs:sequence>
|
||||
<xs:element name="SrvInfo" type="ServiceInformation"/>
|
||||
<xs:element name="Sender" type="SenderInformation"/>
|
||||
<xs:element name="Receiver" type="ReceiverInformation"/>
|
||||
<xs:element name="DiagInfo" type="DiagnosticInformation"/>
|
||||
<xs:element name="CongrInfo" type="CongruencyInformation"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="ServiceInformation">
|
||||
<xs:sequence>
|
||||
<xs:element name="SrvNm" type="ServiceName1"/>
|
||||
<xs:element name="IdE2EMsg" type="IdE2EMsg1"/>
|
||||
<xs:element name="XMLCrtDt" type="ISODateTime"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="SenderInformation">
|
||||
<xs:sequence>
|
||||
<xs:element name="IdCBISend" type="CBIIdentifier"/>
|
||||
<xs:element name="SendTyp" type="SenderType"/>
|
||||
<xs:element name="CBIRefrSend" type="CBIIdentifier"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="ReceiverInformation">
|
||||
<xs:sequence>
|
||||
<xs:element name="IdCBIRecv" type="CBIIdentifier"/>
|
||||
<xs:element name="RecvTyp" type="ReceiverType"/>
|
||||
<xs:element name="CBIRefrRecv" type="CBIIdentifier"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="DiagnosticInformation">
|
||||
<xs:sequence>
|
||||
<xs:element name="UsrBnk" type="CBIIdentifier" minOccurs="0"/>
|
||||
<xs:element name="DiagVers" type="Max35Text"/>
|
||||
<xs:element name="ChkSbj" type="CBIIdentifier"/>
|
||||
<xs:element name="ChkDt" type="ISODateTime"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:complexType name="CongruencyInformation">
|
||||
<xs:sequence>
|
||||
<xs:element name="SrvBdyNb" type="SrvBodyNumber"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:simpleType name="CBIIdentifier">
|
||||
<xs:restriction base="Max8Text">
|
||||
<xs:pattern value="[A-Z0-9]{8,8}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="IdE2EMsg1">
|
||||
<xs:restriction base="Max44Text">
|
||||
<xs:pattern value="[a-zA-Z0-9]{44,44}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max44Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="44"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max60Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="60"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max35Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="35"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max8Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ISODateTime">
|
||||
<xs:restriction base="xs:dateTime"/>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="SrvBodyNumber">
|
||||
<xs:restriction base="xs:positiveInteger">
|
||||
<xs:totalDigits value="4"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ServiceName1">
|
||||
<xs:restriction base="Max60Text">
|
||||
<xs:enumeration value="PORTING-IR"/>
|
||||
<xs:enumeration value="PORTING-IM"/>
|
||||
<xs:enumeration value="PORTING-IB"/>
|
||||
<xs:enumeration value="PORTING-AL"/>
|
||||
<xs:enumeration value="PORTING-PC"/>
|
||||
<xs:enumeration value="PORTING-PE"/>
|
||||
<xs:enumeration value="PORTING-AP"/>
|
||||
<xs:enumeration value="PORTING-AI"/>
|
||||
<xs:enumeration value="PORTING-AB"/>
|
||||
<xs:enumeration value="PORTING-SL-D"/>
|
||||
<xs:enumeration value="PORTING-F4"/>
|
||||
<xs:enumeration value="PORTING-I4"/>
|
||||
<xs:enumeration value="PORTING-R4"/>
|
||||
<xs:enumeration value="PORTING-EIR"/>
|
||||
<xs:enumeration value="PORTING-EIM"/>
|
||||
<xs:enumeration value="PORTING-EIB"/>
|
||||
<xs:enumeration value="PORTING-EAL"/>
|
||||
<xs:enumeration value="PORTING-BB"/>
|
||||
<xs:enumeration value="PORTING-EP"/>
|
||||
<xs:enumeration value="PORTING-AV"/>
|
||||
<xs:enumeration value="PORTING-RH"/>
|
||||
<xs:enumeration value="PORTING-RA"/>
|
||||
<xs:enumeration value="PORTING-EC"/>
|
||||
<xs:enumeration value="PORTING-DT"/>
|
||||
<xs:enumeration value="PORTING-RP"/>
|
||||
<xs:enumeration value="PORTING-SL-I"/>
|
||||
<xs:enumeration value="PORTING-A4"/>
|
||||
<xs:enumeration value="PORTING-Q4"/>
|
||||
<xs:enumeration value="BON-INIZ-BEN"/>
|
||||
<xs:enumeration value="ESITO-BON-ORD-BEN"/>
|
||||
<xs:enumeration value="ANT-FATT-ITA"/>
|
||||
<xs:enumeration value="ANT-FATT-EST"/>
|
||||
<xs:enumeration value="STAT-RPT-ANT-FATT"/>
|
||||
<xs:enumeration value="INV-E2E-FATT"/>
|
||||
<xs:enumeration value="INV-E2E-DOC-NON-STRUTT"/>
|
||||
<xs:enumeration value="SALDO-MOV-INTR"/>
|
||||
<xs:enumeration value="DISP-PAG-ITA"/>
|
||||
<xs:enumeration value="DISP-PAG-SEPA"/>
|
||||
<xs:enumeration value="STAT-RPT-DISP-PAG"/>
|
||||
<xs:enumeration value="AVV-BON-IN"/>
|
||||
<xs:enumeration value="AVV-ISTR"/>
|
||||
<xs:enumeration value="INF-TRF"/>
|
||||
<xs:enumeration value="INC-SDDC"/>
|
||||
<xs:enumeration value="INC-SDDB"/>
|
||||
<xs:enumeration value="STAT-RPT-INC-SDD"/>
|
||||
<xs:enumeration value="INF-ACCT-RT"/>
|
||||
<xs:enumeration value="STAT-RPT-PSD"/>
|
||||
<xs:enumeration value="CBILL-BATCH"/>
|
||||
<xs:enumeration value="CBILL-BATCH-BILLER"/>
|
||||
<xs:enumeration value="CERT-CRED-REQ"/>
|
||||
<xs:enumeration value="STAT-RPT-CERT-CRED"/>
|
||||
<xs:enumeration value="INF-STMT"/>
|
||||
<xs:enumeration value="SALDI-ANAG-TRIB"/>
|
||||
<xs:enumeration value="ESITO-SALDI-ANAG-TRIB"/>
|
||||
<xs:enumeration value="INC-SEDAC"/>
|
||||
<xs:enumeration value="INC-SEDAD"/>
|
||||
<xs:enumeration value="DISP-PAG-EST"/>
|
||||
<xs:enumeration value="STAT-RPT-DISP-PAG-EST"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="SenderType">
|
||||
<xs:restriction base="Max35Text">
|
||||
<xs:enumeration value="Banca Proponente"/>
|
||||
<xs:enumeration value="Banca Passiva"/>
|
||||
<xs:enumeration value="Banca Gateway"/>
|
||||
<xs:enumeration value="STD"/>
|
||||
<xs:enumeration value="GPA"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ReceiverType">
|
||||
<xs:restriction base="Max35Text">
|
||||
<xs:enumeration value="Banca Proponente"/>
|
||||
<xs:enumeration value="Banca Passiva"/>
|
||||
<xs:enumeration value="Banca Gateway"/>
|
||||
<xs:enumeration value="STD"/>
|
||||
<xs:enumeration value="GPA"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,174 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 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"
|
||||
})
|
||||
public class CBIHdrSrv00107 {
|
||||
|
||||
@XmlElement(name = "SrvInfo", required = true)
|
||||
protected ServiceInformation srvInfo;
|
||||
@XmlElement(name = "Sender", required = true)
|
||||
protected SenderInformation sender;
|
||||
@XmlElement(name = "Receiver", required = true)
|
||||
protected ReceiverInformation receiver;
|
||||
@XmlElement(name = "DiagInfo", required = true)
|
||||
protected DiagnosticInformation diagInfo;
|
||||
@XmlElement(name = "CongrInfo", required = true)
|
||||
protected CongruencyInformation congrInfo;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ServiceInformation }
|
||||
*
|
||||
*/
|
||||
public ServiceInformation getSrvInfo() {
|
||||
return srvInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ServiceInformation }
|
||||
*
|
||||
*/
|
||||
public void setSrvInfo(ServiceInformation value) {
|
||||
this.srvInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sender.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SenderInformation }
|
||||
*
|
||||
*/
|
||||
public SenderInformation getSender() {
|
||||
return sender;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sender.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SenderInformation }
|
||||
*
|
||||
*/
|
||||
public void setSender(SenderInformation value) {
|
||||
this.sender = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà receiver.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ReceiverInformation }
|
||||
*
|
||||
*/
|
||||
public ReceiverInformation getReceiver() {
|
||||
return receiver;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà receiver.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ReceiverInformation }
|
||||
*
|
||||
*/
|
||||
public void setReceiver(ReceiverInformation value) {
|
||||
this.receiver = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà diagInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DiagnosticInformation }
|
||||
*
|
||||
*/
|
||||
public DiagnosticInformation getDiagInfo() {
|
||||
return diagInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà diagInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DiagnosticInformation }
|
||||
*
|
||||
*/
|
||||
public void setDiagInfo(DiagnosticInformation value) {
|
||||
this.diagInfo = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà congrInfo.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CongruencyInformation }
|
||||
*
|
||||
*/
|
||||
public CongruencyInformation getCongrInfo() {
|
||||
return congrInfo;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà congrInfo.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CongruencyInformation }
|
||||
*
|
||||
*/
|
||||
public void setCongrInfo(CongruencyInformation value) {
|
||||
this.congrInfo = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,131 @@
|
||||
<?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) -->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="urn:CBI:xsd:CBIHdrTrt.001.07"
|
||||
targetNamespace="urn:CBI:xsd:CBIHdrTrt.001.07" elementFormDefault="qualified">
|
||||
<xs:element name="CBIHdrTrt" type="CBIHdrTrt.001.07">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Header di Tratta incluso nella release 6.15 della documentazione Parte Generale
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:complexType name="CBIHdrTrt.001.07">
|
||||
<xs:sequence>
|
||||
<xs:element name="IdCBISndrf" type="CBIIdentifier"/>
|
||||
<xs:element name="IdCBIRcvrf" type="CBIIdentifier"/>
|
||||
<xs:element name="SrvNm" type="ServiceName"/>
|
||||
<xs:element name="IdMsgTrt" type="IdMsgTrt1"/>
|
||||
<xs:element name="XMLCrtDt" type="ISODateTime"/>
|
||||
<xs:element name="RtrnAddrl" type="RtrnAddrl1"/>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:simpleType name="CBIIdentifier">
|
||||
<xs:restriction base="Max8Text">
|
||||
<xs:pattern value="[A-Z0-9]{8,8}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="IdMsgTrt1">
|
||||
<xs:restriction base="Max61Text">
|
||||
<xs:pattern value="[a-zA-Z0-9]{61,61}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ISODateTime">
|
||||
<xs:restriction base="xs:dateTime"/>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max8Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="8"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max12Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="12"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max35Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="35"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max60Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="60"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="Max61Text">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:minLength value="1"/>
|
||||
<xs:maxLength value="61"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="RtrnAddrl1">
|
||||
<xs:restriction base="Max12Text">
|
||||
<xs:pattern value="[a-zA-Z0-9]{12,12}"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ServiceName">
|
||||
<xs:restriction base="Max60Text">
|
||||
<xs:enumeration value="PORTING-IR"/>
|
||||
<xs:enumeration value="PORTING-IM"/>
|
||||
<xs:enumeration value="PORTING-IB"/>
|
||||
<xs:enumeration value="PORTING-AL"/>
|
||||
<xs:enumeration value="PORTING-PC"/>
|
||||
<xs:enumeration value="PORTING-PE"/>
|
||||
<xs:enumeration value="PORTING-AP"/>
|
||||
<xs:enumeration value="PORTING-AI"/>
|
||||
<xs:enumeration value="PORTING-AB"/>
|
||||
<xs:enumeration value="PORTING-SL-D"/>
|
||||
<xs:enumeration value="PORTING-F4"/>
|
||||
<xs:enumeration value="PORTING-I4"/>
|
||||
<xs:enumeration value="PORTING-R4"/>
|
||||
<xs:enumeration value="PORTING-EIR"/>
|
||||
<xs:enumeration value="PORTING-EIM"/>
|
||||
<xs:enumeration value="PORTING-EIB"/>
|
||||
<xs:enumeration value="PORTING-EAL"/>
|
||||
<xs:enumeration value="PORTING-BB"/>
|
||||
<xs:enumeration value="PORTING-EP"/>
|
||||
<xs:enumeration value="PORTING-AV"/>
|
||||
<xs:enumeration value="PORTING-RH"/>
|
||||
<xs:enumeration value="PORTING-RA"/>
|
||||
<xs:enumeration value="PORTING-EC"/>
|
||||
<xs:enumeration value="PORTING-DT"/>
|
||||
<xs:enumeration value="PORTING-RP"/>
|
||||
<xs:enumeration value="PORTING-SL-I"/>
|
||||
<xs:enumeration value="PORTING-A4"/>
|
||||
<xs:enumeration value="PORTING-Q4"/>
|
||||
<xs:enumeration value="BON-INIZ-BEN"/>
|
||||
<xs:enumeration value="ESITO-BON-ORD-BEN"/>
|
||||
<xs:enumeration value="ANT-FATT-ITA"/>
|
||||
<xs:enumeration value="ANT-FATT-EST"/>
|
||||
<xs:enumeration value="STAT-RPT-ANT-FATT"/>
|
||||
<xs:enumeration value="INV-E2E-FATT"/>
|
||||
<xs:enumeration value="INV-E2E-DOC-NON-STRUTT"/>
|
||||
<xs:enumeration value="SALDO-MOV-INTR"/>
|
||||
<xs:enumeration value="DISP-PAG-ITA"/>
|
||||
<xs:enumeration value="DISP-PAG-SEPA"/>
|
||||
<xs:enumeration value="STAT-RPT-DISP-PAG"/>
|
||||
<xs:enumeration value="AVV-BON-IN"/>
|
||||
<xs:enumeration value="AVV-ISTR"/>
|
||||
<xs:enumeration value="INF-TRF"/>
|
||||
<xs:enumeration value="INC-SDDC"/>
|
||||
<xs:enumeration value="INC-SDDB"/>
|
||||
<xs:enumeration value="STAT-RPT-INC-SDD"/>
|
||||
<xs:enumeration value="INF-ACCT-RT"/>
|
||||
<xs:enumeration value="STAT-RPT-PSD"/>
|
||||
<xs:enumeration value="CBILL-BATCH"/>
|
||||
<xs:enumeration value="CBILL-BATCH-BILLER"/>
|
||||
<xs:enumeration value="CERT-CRED-REQ"/>
|
||||
<xs:enumeration value="STAT-RPT-CERT-CRED"/>
|
||||
<xs:enumeration value="INF-STMT"/>
|
||||
<xs:enumeration value="SALDI-ANAG-TRIB"/>
|
||||
<xs:enumeration value="ESITO-SALDI-ANAG-TRIB"/>
|
||||
<xs:enumeration value="INC-SEDAC"/>
|
||||
<xs:enumeration value="INC-SEDAD"/>
|
||||
<xs:enumeration value="DISP-PAG-EST"/>
|
||||
<xs:enumeration value="STAT-RPT-DISP-PAG-EST"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,206 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 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"
|
||||
})
|
||||
public class CBIHdrTrt00107 {
|
||||
|
||||
@XmlElement(name = "IdCBISndrf", required = true)
|
||||
protected String idCBISndrf;
|
||||
@XmlElement(name = "IdCBIRcvrf", required = true)
|
||||
protected String idCBIRcvrf;
|
||||
@XmlElement(name = "SrvNm", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected ServiceName srvNm;
|
||||
@XmlElement(name = "IdMsgTrt", required = true)
|
||||
protected String idMsgTrt;
|
||||
@XmlElement(name = "XMLCrtDt", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar xmlCrtDt;
|
||||
@XmlElement(name = "RtrnAddrl", required = true)
|
||||
protected String rtrnAddrl;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idCBISndrf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIdCBISndrf() {
|
||||
return idCBISndrf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idCBISndrf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIdCBISndrf(String value) {
|
||||
this.idCBISndrf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idCBIRcvrf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIdCBIRcvrf() {
|
||||
return idCBIRcvrf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idCBIRcvrf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIdCBIRcvrf(String value) {
|
||||
this.idCBIRcvrf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvNm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ServiceName }
|
||||
*
|
||||
*/
|
||||
public ServiceName getSrvNm() {
|
||||
return srvNm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvNm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ServiceName }
|
||||
*
|
||||
*/
|
||||
public void setSrvNm(ServiceName value) {
|
||||
this.srvNm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà idMsgTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getIdMsgTrt() {
|
||||
return idMsgTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà idMsgTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setIdMsgTrt(String value) {
|
||||
this.idMsgTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà xmlCrtDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getXMLCrtDt() {
|
||||
return xmlCrtDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà xmlCrtDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setXMLCrtDt(XMLGregorianCalendar value) {
|
||||
this.xmlCrtDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rtrnAddrl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getRtrnAddrl() {
|
||||
return rtrnAddrl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rtrnAddrl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setRtrnAddrl(String value) {
|
||||
this.rtrnAddrl = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIOrganisationIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIIdType1", propOrder = {
|
||||
"orgId"
|
||||
})
|
||||
public class CBIIdType1 {
|
||||
|
||||
@XmlElement(name = "OrgId", 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,91 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBINumberOfTransactionsPerStatus1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBINumberOfTransactionsPerStatus1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="DtldNbOfTxs" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max15NumericText"/>
|
||||
* <element name="DtldCtrlSum" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}DecimalNumber"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBINumberOfTransactionsPerStatus1", propOrder = {
|
||||
"dtldNbOfTxs",
|
||||
"dtldCtrlSum"
|
||||
})
|
||||
public class CBINumberOfTransactionsPerStatus1 {
|
||||
|
||||
@XmlElement(name = "DtldNbOfTxs", required = true)
|
||||
protected String dtldNbOfTxs;
|
||||
@XmlElement(name = "DtldCtrlSum", required = true)
|
||||
protected BigDecimal dtldCtrlSum;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtldNbOfTxs.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDtldNbOfTxs() {
|
||||
return dtldNbOfTxs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtldNbOfTxs.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDtldNbOfTxs(String value) {
|
||||
this.dtldNbOfTxs = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtldCtrlSum.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getDtldCtrlSum() {
|
||||
return dtldCtrlSum;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtldCtrlSum.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setDtldCtrlSum(BigDecimal value) {
|
||||
this.dtldCtrlSum = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,69 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIGenericIdentification1" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification1", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification1 {
|
||||
|
||||
@XmlElement(name = "Othr", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}AnyBICDec2014Identifier" minOccurs="0"/>
|
||||
* <element name="LEI" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}LEIIdentifier" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIGenericIdentification1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification2", propOrder = {
|
||||
"anyBIC",
|
||||
"lei",
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification2 {
|
||||
|
||||
@XmlElement(name = "AnyBIC")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "LEI")
|
||||
protected String lei;
|
||||
@XmlElement(name = "Othr")
|
||||
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,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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">
|
||||
* <choice>
|
||||
* <element name="AnyBIC" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}AnyBICDec2014Identifier"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIGenericIdentification1"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOrganisationIdentification3", propOrder = {
|
||||
"anyBIC",
|
||||
"othr"
|
||||
})
|
||||
public class CBIOrganisationIdentification3 {
|
||||
|
||||
@XmlElement(name = "AnyBIC")
|
||||
protected String anyBIC;
|
||||
@XmlElement(name = "Othr")
|
||||
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à 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,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIOriginalPaymentInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOriginalPaymentInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgnlPmtInfId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="TxInfAndSts" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPaymentTransactionInformation1" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOriginalPaymentInformation1", propOrder = {
|
||||
"orgnlPmtInfId",
|
||||
"txInfAndSts"
|
||||
})
|
||||
public class CBIOriginalPaymentInformation1 {
|
||||
|
||||
@XmlElement(name = "OrgnlPmtInfId", required = true)
|
||||
protected String orgnlPmtInfId;
|
||||
@XmlElement(name = "TxInfAndSts", required = true)
|
||||
protected List<CBIPaymentTransactionInformation1> txInfAndSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlPmtInfId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlPmtInfId() {
|
||||
return orgnlPmtInfId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlPmtInfId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlPmtInfId(String value) {
|
||||
this.orgnlPmtInfId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the txInfAndSts 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 txInfAndSts property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getTxInfAndSts().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIPaymentTransactionInformation1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIPaymentTransactionInformation1> getTxInfAndSts() {
|
||||
if (txInfAndSts == null) {
|
||||
txInfAndSts = new ArrayList<CBIPaymentTransactionInformation1>();
|
||||
}
|
||||
return this.txInfAndSts;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,189 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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;
|
||||
import javax.xml.datatype.XMLGregorianCalendar;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIOriginalRequestInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOriginalRequestInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgnlMsgId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="OrgnlCreDtTm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODateTime"/>
|
||||
* <element name="GrpSts">
|
||||
* <simpleType>
|
||||
* <restriction base="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIServiceStatus1Code">
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </element>
|
||||
* <element name="StsRsnInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}StatusInformation1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="NbOfTxsPerSts" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBINumberOfTransactionsPerStatus1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOriginalRequestInformation1", propOrder = {
|
||||
"orgnlMsgId",
|
||||
"orgnlCreDtTm",
|
||||
"grpSts",
|
||||
"stsRsnInf",
|
||||
"nbOfTxsPerSts"
|
||||
})
|
||||
public class CBIOriginalRequestInformation1 {
|
||||
|
||||
@XmlElement(name = "OrgnlMsgId", required = true)
|
||||
protected String orgnlMsgId;
|
||||
@XmlElement(name = "OrgnlCreDtTm", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar orgnlCreDtTm;
|
||||
@XmlElement(name = "GrpSts", required = true)
|
||||
protected CBIServiceStatus1Code grpSts;
|
||||
@XmlElement(name = "StsRsnInf")
|
||||
protected List<StatusInformation1> stsRsnInf;
|
||||
@XmlElement(name = "NbOfTxsPerSts")
|
||||
protected CBINumberOfTransactionsPerStatus1 nbOfTxsPerSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlMsgId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlMsgId() {
|
||||
return orgnlMsgId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlMsgId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlMsgId(String value) {
|
||||
this.orgnlMsgId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlCreDtTm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getOrgnlCreDtTm() {
|
||||
return orgnlCreDtTm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlCreDtTm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlCreDtTm(XMLGregorianCalendar value) {
|
||||
this.orgnlCreDtTm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grpSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceStatus1Code }
|
||||
*
|
||||
*/
|
||||
public CBIServiceStatus1Code getGrpSts() {
|
||||
return grpSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grpSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceStatus1Code }
|
||||
*
|
||||
*/
|
||||
public void setGrpSts(CBIServiceStatus1Code value) {
|
||||
this.grpSts = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the stsRsnInf 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 stsRsnInf property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getStsRsnInf().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link StatusInformation1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<StatusInformation1> getStsRsnInf() {
|
||||
if (stsRsnInf == null) {
|
||||
stsRsnInf = new ArrayList<StatusInformation1>();
|
||||
}
|
||||
return this.stsRsnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà nbOfTxsPerSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBINumberOfTransactionsPerStatus1 }
|
||||
*
|
||||
*/
|
||||
public CBINumberOfTransactionsPerStatus1 getNbOfTxsPerSts() {
|
||||
return nbOfTxsPerSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà nbOfTxsPerSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBINumberOfTransactionsPerStatus1 }
|
||||
*
|
||||
*/
|
||||
public void setNbOfTxsPerSts(CBINumberOfTransactionsPerStatus1 value) {
|
||||
this.nbOfTxsPerSts = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,458 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIOriginalTransactionReference1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIOriginalTransactionReference1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIAmountType2Choice" minOccurs="0"/>
|
||||
* <element name="ReqdColltnDt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODate"/>
|
||||
* <element name="CdtrSchmeId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification2" minOccurs="0"/>
|
||||
* <element name="PmtTpInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPaymentTypeInformation2" minOccurs="0"/>
|
||||
* <element name="PmtMtd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PaymentMethod2Code" minOccurs="0"/>
|
||||
* <element name="MndtRltdInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}MandateRelatedInformation1" minOccurs="0"/>
|
||||
* <element name="RmtInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}RemittanceInformation5" minOccurs="0"/>
|
||||
* <element name="UltmtDbtr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification4" minOccurs="0"/>
|
||||
* <element name="Dbtr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification4" minOccurs="0"/>
|
||||
* <element name="DbtrAcct" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBICashAccount7" minOccurs="0"/>
|
||||
* <element name="DbtrAgt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIBranchAndFinancialInstitutionIdentification3" minOccurs="0"/>
|
||||
* <element name="Cdtr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification3" minOccurs="0"/>
|
||||
* <element name="CdtrAcct" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBICashAccount7" minOccurs="0"/>
|
||||
* <element name="UltmtCdtr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPartyIdentification3" minOccurs="0"/>
|
||||
* <element name="Purp" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPurpose1Choice" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIOriginalTransactionReference1", propOrder = {
|
||||
"amt",
|
||||
"reqdColltnDt",
|
||||
"cdtrSchmeId",
|
||||
"pmtTpInf",
|
||||
"pmtMtd",
|
||||
"mndtRltdInf",
|
||||
"rmtInf",
|
||||
"ultmtDbtr",
|
||||
"dbtr",
|
||||
"dbtrAcct",
|
||||
"dbtrAgt",
|
||||
"cdtr",
|
||||
"cdtrAcct",
|
||||
"ultmtCdtr",
|
||||
"purp"
|
||||
})
|
||||
public class CBIOriginalTransactionReference1 {
|
||||
|
||||
@XmlElement(name = "Amt")
|
||||
protected CBIAmountType2Choice amt;
|
||||
@XmlElement(name = "ReqdColltnDt", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar reqdColltnDt;
|
||||
@XmlElement(name = "CdtrSchmeId")
|
||||
protected CBIPartyIdentification2 cdtrSchmeId;
|
||||
@XmlElement(name = "PmtTpInf")
|
||||
protected CBIPaymentTypeInformation2 pmtTpInf;
|
||||
@XmlElement(name = "PmtMtd")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected PaymentMethod2Code pmtMtd;
|
||||
@XmlElement(name = "MndtRltdInf")
|
||||
protected MandateRelatedInformation1 mndtRltdInf;
|
||||
@XmlElement(name = "RmtInf")
|
||||
protected RemittanceInformation5 rmtInf;
|
||||
@XmlElement(name = "UltmtDbtr")
|
||||
protected CBIPartyIdentification4 ultmtDbtr;
|
||||
@XmlElement(name = "Dbtr")
|
||||
protected CBIPartyIdentification4 dbtr;
|
||||
@XmlElement(name = "DbtrAcct")
|
||||
protected CBICashAccount7 dbtrAcct;
|
||||
@XmlElement(name = "DbtrAgt")
|
||||
protected CBIBranchAndFinancialInstitutionIdentification3 dbtrAgt;
|
||||
@XmlElement(name = "Cdtr")
|
||||
protected CBIPartyIdentification3 cdtr;
|
||||
@XmlElement(name = "CdtrAcct")
|
||||
protected CBICashAccount7 cdtrAcct;
|
||||
@XmlElement(name = "UltmtCdtr")
|
||||
protected CBIPartyIdentification3 ultmtCdtr;
|
||||
@XmlElement(name = "Purp")
|
||||
protected CBIPurpose1Choice purp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà amt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIAmountType2Choice }
|
||||
*
|
||||
*/
|
||||
public CBIAmountType2Choice getAmt() {
|
||||
return amt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà amt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIAmountType2Choice }
|
||||
*
|
||||
*/
|
||||
public void setAmt(CBIAmountType2Choice value) {
|
||||
this.amt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà reqdColltnDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getReqdColltnDt() {
|
||||
return reqdColltnDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà reqdColltnDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setReqdColltnDt(XMLGregorianCalendar value) {
|
||||
this.reqdColltnDt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cdtrSchmeId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification2 getCdtrSchmeId() {
|
||||
return cdtrSchmeId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtrSchmeId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setCdtrSchmeId(CBIPartyIdentification2 value) {
|
||||
this.cdtrSchmeId = 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à pmtMtd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PaymentMethod2Code }
|
||||
*
|
||||
*/
|
||||
public PaymentMethod2Code getPmtMtd() {
|
||||
return pmtMtd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtMtd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PaymentMethod2Code }
|
||||
*
|
||||
*/
|
||||
public void setPmtMtd(PaymentMethod2Code value) {
|
||||
this.pmtMtd = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mndtRltdInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MandateRelatedInformation1 }
|
||||
*
|
||||
*/
|
||||
public MandateRelatedInformation1 getMndtRltdInf() {
|
||||
return mndtRltdInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mndtRltdInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MandateRelatedInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setMndtRltdInf(MandateRelatedInformation1 value) {
|
||||
this.mndtRltdInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà rmtInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RemittanceInformation5 }
|
||||
*
|
||||
*/
|
||||
public RemittanceInformation5 getRmtInf() {
|
||||
return rmtInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rmtInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RemittanceInformation5 }
|
||||
*
|
||||
*/
|
||||
public void setRmtInf(RemittanceInformation5 value) {
|
||||
this.rmtInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification4 getUltmtDbtr() {
|
||||
return ultmtDbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setUltmtDbtr(CBIPartyIdentification4 value) {
|
||||
this.ultmtDbtr = 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 CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount7 getDbtrAcct() {
|
||||
return dbtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAcct(CBICashAccount7 value) {
|
||||
this.dbtrAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification3 getDbtrAgt() {
|
||||
return dbtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAgt(CBIBranchAndFinancialInstitutionIdentification3 value) {
|
||||
this.dbtrAgt = 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 CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount7 getCdtrAcct() {
|
||||
return cdtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cdtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public void setCdtrAcct(CBICashAccount7 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà purp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public CBIPurpose1Choice getPurp() {
|
||||
return purp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà purp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public void setPurp(CBIPurpose1Choice value) {
|
||||
this.purp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIOrganisationIdentification2"/>
|
||||
* <element name="PrvtId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPersonIdentification1"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIParty1Choice", propOrder = {
|
||||
"orgId",
|
||||
"prvtId"
|
||||
})
|
||||
public class CBIParty1Choice {
|
||||
|
||||
@XmlElement(name = "OrgId")
|
||||
protected CBIOrganisationIdentification2 orgId;
|
||||
@XmlElement(name = "PrvtId")
|
||||
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,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIParty2Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIParty2Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="OrgId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIOrganisationIdentification3"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIParty2Choice", propOrder = {
|
||||
"orgId"
|
||||
})
|
||||
public class CBIParty2Choice {
|
||||
|
||||
@XmlElement(name = "OrgId", 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.SSD_v00_01_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 CBIParty4Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIParty4Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PrvtId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPersonIdentification2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIParty4Choice", propOrder = {
|
||||
"prvtId"
|
||||
})
|
||||
public class CBIParty4Choice {
|
||||
|
||||
@XmlElement(name = "PrvtId", required = true)
|
||||
protected CBIPersonIdentification2 prvtId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà prvtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPersonIdentification2 }
|
||||
*
|
||||
*/
|
||||
public CBIPersonIdentification2 getPrvtId() {
|
||||
return prvtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà prvtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPersonIdentification2 }
|
||||
*
|
||||
*/
|
||||
public void setPrvtId(CBIPersonIdentification2 value) {
|
||||
this.prvtId = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIIdType1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification1", propOrder = {
|
||||
"nm",
|
||||
"id"
|
||||
})
|
||||
public class CBIPartyIdentification1 {
|
||||
|
||||
@XmlElement(name = "Nm")
|
||||
protected String nm;
|
||||
@XmlElement(name = "Id", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIParty4Choice"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification2", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification2 {
|
||||
|
||||
@XmlElement(name = "Nm")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected CBIParty4Choice id;
|
||||
@XmlElement(name = "CtryOfRes")
|
||||
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 CBIParty4Choice }
|
||||
*
|
||||
*/
|
||||
public CBIParty4Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIParty4Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIParty4Choice 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,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max70Text"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIParty1Choice" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification3", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id"
|
||||
})
|
||||
public class CBIPartyIdentification3 {
|
||||
|
||||
@XmlElement(name = "Nm", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id")
|
||||
protected CBIParty1Choice 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à 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;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max70Text"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIParty1Choice" minOccurs="0"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification4", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification4 {
|
||||
|
||||
@XmlElement(name = "Nm", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id")
|
||||
protected CBIParty1Choice id;
|
||||
@XmlElement(name = "CtryOfRes")
|
||||
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,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}Max70Text"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIParty2Choice"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification5", propOrder = {
|
||||
"nm",
|
||||
"id"
|
||||
})
|
||||
public class CBIPartyIdentification5 {
|
||||
|
||||
@XmlElement(name = "Nm", required = true)
|
||||
protected String nm;
|
||||
@XmlElement(name = "Id", required = true)
|
||||
protected CBIParty2Choice 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 CBIParty2Choice }
|
||||
*
|
||||
*/
|
||||
public CBIParty2Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIParty2Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIParty2Choice value) {
|
||||
this.id = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,146 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPartyIdentification6 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPartyIdentification6">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstlAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIPostalAddress24" minOccurs="0"/>
|
||||
* <element name="Id" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIParty4Choice" minOccurs="0"/>
|
||||
* <element name="CtryOfRes" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CountryCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPartyIdentification6", propOrder = {
|
||||
"nm",
|
||||
"pstlAdr",
|
||||
"id",
|
||||
"ctryOfRes"
|
||||
})
|
||||
public class CBIPartyIdentification6 {
|
||||
|
||||
@XmlElement(name = "Nm")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PstlAdr")
|
||||
protected CBIPostalAddress24 pstlAdr;
|
||||
@XmlElement(name = "Id")
|
||||
protected CBIParty4Choice id;
|
||||
@XmlElement(name = "CtryOfRes")
|
||||
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 CBIParty4Choice }
|
||||
*
|
||||
*/
|
||||
public CBIParty4Choice getId() {
|
||||
return id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà id.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIParty4Choice }
|
||||
*
|
||||
*/
|
||||
public void setId(CBIParty4Choice 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,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPaymentIdentification1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentIdentification1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="InstrId" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="EndToEndId" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="UETR" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}UUIDv4Identifier" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentIdentification1", propOrder = {
|
||||
"instrId",
|
||||
"endToEndId",
|
||||
"uetr"
|
||||
})
|
||||
public class CBIPaymentIdentification1 {
|
||||
|
||||
@XmlElement(name = "InstrId", required = true)
|
||||
protected String instrId;
|
||||
@XmlElement(name = "EndToEndId", required = true)
|
||||
protected String endToEndId;
|
||||
@XmlElement(name = "UETR")
|
||||
protected String uetr;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà instrId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInstrId() {
|
||||
return instrId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà instrId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInstrId(String value) {
|
||||
this.instrId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà endToEndId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getEndToEndId() {
|
||||
return endToEndId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà endToEndId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setEndToEndId(String value) {
|
||||
this.endToEndId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà uetr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUETR() {
|
||||
return uetr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà uetr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUETR(String value) {
|
||||
this.uetr = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,295 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPaymentTransactionInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentTransactionInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="StsId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="OrgnlInstrId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="OrgnlEndToEndId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="OrgnlUETR" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}UUIDv4Identifier" minOccurs="0"/>
|
||||
* <element name="TxSts" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBITransactionIndividualStatus1Code"/>
|
||||
* <element name="StsRsnInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}StatusReasonInformation1"/>
|
||||
* <element name="ChrgsInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ChargesInformation1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="TrckrData" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}TrackerData1" minOccurs="0"/>
|
||||
* <element name="OrgnlTxRef" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIOriginalTransactionReference1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentTransactionInformation1", propOrder = {
|
||||
"stsId",
|
||||
"orgnlInstrId",
|
||||
"orgnlEndToEndId",
|
||||
"orgnlUETR",
|
||||
"txSts",
|
||||
"stsRsnInf",
|
||||
"chrgsInf",
|
||||
"trckrData",
|
||||
"orgnlTxRef"
|
||||
})
|
||||
public class CBIPaymentTransactionInformation1 {
|
||||
|
||||
@XmlElement(name = "StsId")
|
||||
protected String stsId;
|
||||
@XmlElement(name = "OrgnlInstrId", required = true)
|
||||
protected String orgnlInstrId;
|
||||
@XmlElement(name = "OrgnlEndToEndId", required = true)
|
||||
protected String orgnlEndToEndId;
|
||||
@XmlElement(name = "OrgnlUETR")
|
||||
protected String orgnlUETR;
|
||||
@XmlElement(name = "TxSts", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBITransactionIndividualStatus1Code txSts;
|
||||
@XmlElement(name = "StsRsnInf", required = true)
|
||||
protected StatusReasonInformation1 stsRsnInf;
|
||||
@XmlElement(name = "ChrgsInf")
|
||||
protected List<ChargesInformation1> chrgsInf;
|
||||
@XmlElement(name = "TrckrData")
|
||||
protected TrackerData1 trckrData;
|
||||
@XmlElement(name = "OrgnlTxRef", required = true)
|
||||
protected CBIOriginalTransactionReference1 orgnlTxRef;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà stsId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getStsId() {
|
||||
return stsId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà stsId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setStsId(String value) {
|
||||
this.stsId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlInstrId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlInstrId() {
|
||||
return orgnlInstrId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlInstrId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlInstrId(String value) {
|
||||
this.orgnlInstrId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlEndToEndId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlEndToEndId() {
|
||||
return orgnlEndToEndId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlEndToEndId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlEndToEndId(String value) {
|
||||
this.orgnlEndToEndId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlUETR.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getOrgnlUETR() {
|
||||
return orgnlUETR;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlUETR.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlUETR(String value) {
|
||||
this.orgnlUETR = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà txSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBITransactionIndividualStatus1Code }
|
||||
*
|
||||
*/
|
||||
public CBITransactionIndividualStatus1Code getTxSts() {
|
||||
return txSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà txSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBITransactionIndividualStatus1Code }
|
||||
*
|
||||
*/
|
||||
public void setTxSts(CBITransactionIndividualStatus1Code value) {
|
||||
this.txSts = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà stsRsnInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link StatusReasonInformation1 }
|
||||
*
|
||||
*/
|
||||
public StatusReasonInformation1 getStsRsnInf() {
|
||||
return stsRsnInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà stsRsnInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link StatusReasonInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setStsRsnInf(StatusReasonInformation1 value) {
|
||||
this.stsRsnInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the chrgsInf 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 chrgsInf property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getChrgsInf().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link ChargesInformation1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<ChargesInformation1> getChrgsInf() {
|
||||
if (chrgsInf == null) {
|
||||
chrgsInf = new ArrayList<ChargesInformation1>();
|
||||
}
|
||||
return this.chrgsInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà trckrData.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link TrackerData1 }
|
||||
*
|
||||
*/
|
||||
public TrackerData1 getTrckrData() {
|
||||
return trckrData;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà trckrData.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link TrackerData1 }
|
||||
*
|
||||
*/
|
||||
public void setTrckrData(TrackerData1 value) {
|
||||
this.trckrData = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlTxRef.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOriginalTransactionReference1 }
|
||||
*
|
||||
*/
|
||||
public CBIOriginalTransactionReference1 getOrgnlTxRef() {
|
||||
return orgnlTxRef;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlTxRef.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOriginalTransactionReference1 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlTxRef(CBIOriginalTransactionReference1 value) {
|
||||
this.orgnlTxRef = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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="CtgyPurp" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PaymentCategoryPurpose1Code" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentTypeInformation2", propOrder = {
|
||||
"ctgyPurp"
|
||||
})
|
||||
public class CBIPaymentTypeInformation2 {
|
||||
|
||||
@XmlElement(name = "CtgyPurp")
|
||||
protected PaymentCategoryPurpose1Code ctgyPurp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PaymentCategoryPurpose1Code }
|
||||
*
|
||||
*/
|
||||
public PaymentCategoryPurpose1Code getCtgyPurp() {
|
||||
return ctgyPurp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PaymentCategoryPurpose1Code }
|
||||
*
|
||||
*/
|
||||
public void setCtgyPurp(PaymentCategoryPurpose1Code value) {
|
||||
this.ctgyPurp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPaymentTypeInformation2_1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPaymentTypeInformation2_1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SvcLvl" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIServiceLevel3Choice"/>
|
||||
* <element name="LclInstrm" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}LocalInstrument1Choice"/>
|
||||
* <element name="SeqTp" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}SequenceType1Code"/>
|
||||
* <element name="CtgyPurp" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}PaymentCategoryPurpose1Code" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPaymentTypeInformation2_1", propOrder = {
|
||||
"svcLvl",
|
||||
"lclInstrm",
|
||||
"seqTp",
|
||||
"ctgyPurp"
|
||||
})
|
||||
public class CBIPaymentTypeInformation21 {
|
||||
|
||||
@XmlElement(name = "SvcLvl", required = true)
|
||||
protected CBIServiceLevel3Choice svcLvl;
|
||||
@XmlElement(name = "LclInstrm", required = true)
|
||||
protected LocalInstrument1Choice lclInstrm;
|
||||
@XmlElement(name = "SeqTp", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected SequenceType1Code seqTp;
|
||||
@XmlElement(name = "CtgyPurp")
|
||||
protected PaymentCategoryPurpose1Code ctgyPurp;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà svcLvl.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceLevel3Choice }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel3Choice getSvcLvl() {
|
||||
return svcLvl;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà svcLvl.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceLevel3Choice }
|
||||
*
|
||||
*/
|
||||
public void setSvcLvl(CBIServiceLevel3Choice value) {
|
||||
this.svcLvl = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link LocalInstrument1Choice }
|
||||
*
|
||||
*/
|
||||
public LocalInstrument1Choice getLclInstrm() {
|
||||
return lclInstrm;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà lclInstrm.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link LocalInstrument1Choice }
|
||||
*
|
||||
*/
|
||||
public void setLclInstrm(LocalInstrument1Choice value) {
|
||||
this.lclInstrm = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà seqTp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link SequenceType1Code }
|
||||
*
|
||||
*/
|
||||
public SequenceType1Code getSeqTp() {
|
||||
return seqTp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà seqTp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link SequenceType1Code }
|
||||
*
|
||||
*/
|
||||
public void setSeqTp(SequenceType1Code value) {
|
||||
this.seqTp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link PaymentCategoryPurpose1Code }
|
||||
*
|
||||
*/
|
||||
public PaymentCategoryPurpose1Code getCtgyPurp() {
|
||||
return ctgyPurp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctgyPurp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link PaymentCategoryPurpose1Code }
|
||||
*
|
||||
*/
|
||||
public void setCtgyPurp(PaymentCategoryPurpose1Code value) {
|
||||
this.ctgyPurp = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CBIGenericIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPersonIdentification1", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIPersonIdentification1 {
|
||||
|
||||
@XmlElement(name = "Othr", 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,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPersonIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPersonIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIGenericIdentification2"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPersonIdentification2", propOrder = {
|
||||
"othr"
|
||||
})
|
||||
public class CBIPersonIdentification2 {
|
||||
|
||||
@XmlElement(name = "Othr", 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,489 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}AddressType3Choice" minOccurs="0"/>
|
||||
* <element name="Dept" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="SubDept" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="StrtNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="BldgNb" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="BldgNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Flr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstBx" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="Room" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="PstCd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max16Text" minOccurs="0"/>
|
||||
* <element name="TwnNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="TwnLctnNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="DstrctNm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="CtrySubDvsn" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Ctry" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CountryCode" minOccurs="0"/>
|
||||
* <element name="AdrLine" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" maxOccurs="2" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPostalAddress24", propOrder = {
|
||||
"adrTp",
|
||||
"dept",
|
||||
"subDept",
|
||||
"strtNm",
|
||||
"bldgNb",
|
||||
"bldgNm",
|
||||
"flr",
|
||||
"pstBx",
|
||||
"room",
|
||||
"pstCd",
|
||||
"twnNm",
|
||||
"twnLctnNm",
|
||||
"dstrctNm",
|
||||
"ctrySubDvsn",
|
||||
"ctry",
|
||||
"adrLine"
|
||||
})
|
||||
public class CBIPostalAddress24 {
|
||||
|
||||
@XmlElement(name = "AdrTp")
|
||||
protected AddressType3Choice adrTp;
|
||||
@XmlElement(name = "Dept")
|
||||
protected String dept;
|
||||
@XmlElement(name = "SubDept")
|
||||
protected String subDept;
|
||||
@XmlElement(name = "StrtNm")
|
||||
protected String strtNm;
|
||||
@XmlElement(name = "BldgNb")
|
||||
protected String bldgNb;
|
||||
@XmlElement(name = "BldgNm")
|
||||
protected String bldgNm;
|
||||
@XmlElement(name = "Flr")
|
||||
protected String flr;
|
||||
@XmlElement(name = "PstBx")
|
||||
protected String pstBx;
|
||||
@XmlElement(name = "Room")
|
||||
protected String room;
|
||||
@XmlElement(name = "PstCd")
|
||||
protected String pstCd;
|
||||
@XmlElement(name = "TwnNm")
|
||||
protected String twnNm;
|
||||
@XmlElement(name = "TwnLctnNm")
|
||||
protected String twnLctnNm;
|
||||
@XmlElement(name = "DstrctNm")
|
||||
protected String dstrctNm;
|
||||
@XmlElement(name = "CtrySubDvsn")
|
||||
protected String ctrySubDvsn;
|
||||
@XmlElement(name = "Ctry")
|
||||
protected String ctry;
|
||||
@XmlElement(name = "AdrLine")
|
||||
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,62 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIPurpose1Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIPurpose1Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ExternalPurposeCode"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIPurpose1Choice", propOrder = {
|
||||
"cd"
|
||||
})
|
||||
public class CBIPurpose1Choice {
|
||||
|
||||
@XmlElement(name = "Cd", 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,92 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDReqLogMsg.00.01.01}CBIRegulatoryReportingType2Code"/>
|
||||
* <element name="Dtls" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIStructuredRegulatoryReporting1" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIRegulatoryReporting1", propOrder = {
|
||||
"dbtCdtRptgInd",
|
||||
"dtls"
|
||||
})
|
||||
public class CBIRegulatoryReporting1 {
|
||||
|
||||
@XmlElement(name = "DbtCdtRptgInd", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIRegulatoryReportingType2Code dbtCdtRptgInd;
|
||||
@XmlElement(name = "Dtls")
|
||||
protected CBIStructuredRegulatoryReporting1 dtls;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtCdtRptgInd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIRegulatoryReportingType2Code }
|
||||
*
|
||||
*/
|
||||
public CBIRegulatoryReportingType2Code getDbtCdtRptgInd() {
|
||||
return dbtCdtRptgInd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtCdtRptgInd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIRegulatoryReportingType2Code }
|
||||
*
|
||||
*/
|
||||
public void setDbtCdtRptgInd(CBIRegulatoryReportingType2Code 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.SSD_v00_01_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIRegulatoryReportingType2Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIRegulatoryReportingType2Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="CRED"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIRegulatoryReportingType2Code")
|
||||
@XmlEnum
|
||||
public enum CBIRegulatoryReportingType2Code {
|
||||
|
||||
CRED;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIRegulatoryReportingType2Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,97 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDReqLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDReqLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="GrpHdr" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIGroupHeader2"/>
|
||||
* <element name="PmtInf" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}PaymentInstructionInformation2" maxOccurs="unbounded"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDReqLogMsg.00.01.01", propOrder = {
|
||||
"grpHdr",
|
||||
"pmtInf"
|
||||
})
|
||||
public class CBISDDReqLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "GrpHdr", required = true)
|
||||
protected CBIGroupHeader2 grpHdr;
|
||||
@XmlElement(name = "PmtInf", required = true)
|
||||
protected List<PaymentInstructionInformation2> pmtInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grpHdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIGroupHeader2 }
|
||||
*
|
||||
*/
|
||||
public CBIGroupHeader2 getGrpHdr() {
|
||||
return grpHdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grpHdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIGroupHeader2 }
|
||||
*
|
||||
*/
|
||||
public void setGrpHdr(CBIGroupHeader2 value) {
|
||||
this.grpHdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the pmtInf 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 pmtInf property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getPmtInf().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link PaymentInstructionInformation2 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<PaymentInstructionInformation2> getPmtInf() {
|
||||
if (pmtInf == null) {
|
||||
pmtInf = new ArrayList<PaymentInstructionInformation2>();
|
||||
}
|
||||
return this.pmtInf;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDReqPhyMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDReqPhyMsg.00.01.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="CBIBdySDDReq" type="{urn:CBI:xsd:CBIBdySDDReq.00.01.01}CBIBdySDDReq.00.01.01"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDReqPhyMsg.00.01.01", namespace = "urn:CBI:xsd:CBISDDReqPhyMsg.00.01.01", propOrder = {
|
||||
"cbiHdrTrt",
|
||||
"cbiHdrSrv",
|
||||
"cbiBdySDDReq"
|
||||
})
|
||||
public class CBISDDReqPhyMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBIHdrTrt", required = true)
|
||||
protected CBIHdrTrt00107 cbiHdrTrt;
|
||||
@XmlElement(name = "CBIHdrSrv", required = true)
|
||||
protected CBIHdrSrv00107 cbiHdrSrv;
|
||||
@XmlElement(name = "CBIBdySDDReq", required = true)
|
||||
protected CBIBdySDDReq000101 cbiBdySDDReq;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrTrt00107 getCBIHdrTrt() {
|
||||
return cbiHdrTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrTrt(CBIHdrTrt00107 value) {
|
||||
this.cbiHdrTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrSrv00107 getCBIHdrSrv() {
|
||||
return cbiHdrSrv;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrSrv(CBIHdrSrv00107 value) {
|
||||
this.cbiHdrSrv = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiBdySDDReq.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBdySDDReq000101 }
|
||||
*
|
||||
*/
|
||||
public CBIBdySDDReq000101 getCBIBdySDDReq() {
|
||||
return cbiBdySDDReq;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiBdySDDReq.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBdySDDReq000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBIBdySDDReq(CBIBdySDDReq000101 value) {
|
||||
this.cbiBdySDDReq = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDStsRptCtrlLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDStsRptCtrlLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="CtrlMsgInf" type="{urn:CBI:xsd:CBISDDStsRptCtrlLogMsg.00.01.01}MessageIdentification1"/>
|
||||
* <element name="OrgnlLogMsgInfAndSts" type="{urn:CBI:xsd:CBISDDStsRptCtrlLogMsg.00.01.01}CBIOriginalRequestInformation1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDStsRptCtrlLogMsg.00.01.01", propOrder = {
|
||||
"ctrlMsgInf",
|
||||
"orgnlLogMsgInfAndSts"
|
||||
})
|
||||
public class CBISDDStsRptCtrlLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "CtrlMsgInf", required = true)
|
||||
protected MessageIdentification1 ctrlMsgInf;
|
||||
@XmlElement(name = "OrgnlLogMsgInfAndSts", required = true)
|
||||
protected CBIOriginalRequestInformation1 orgnlLogMsgInfAndSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ctrlMsgInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public MessageIdentification1 getCtrlMsgInf() {
|
||||
return ctrlMsgInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ctrlMsgInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setCtrlMsgInf(MessageIdentification1 value) {
|
||||
this.ctrlMsgInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlLogMsgInfAndSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public CBIOriginalRequestInformation1 getOrgnlLogMsgInfAndSts() {
|
||||
return orgnlLogMsgInfAndSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlLogMsgInfAndSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlLogMsgInfAndSts(CBIOriginalRequestInformation1 value) {
|
||||
this.orgnlLogMsgInfAndSts = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,125 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDStsRptLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDStsRptLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="GrpHdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}MessageIdentification1"/>
|
||||
* <element name="OrgnlGrpInfAndSts" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIOriginalRequestInformation1"/>
|
||||
* <element name="OrgnlPmtInfAndSts" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIOriginalPaymentInformation1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDStsRptLogMsg.00.01.01", propOrder = {
|
||||
"grpHdr",
|
||||
"orgnlGrpInfAndSts",
|
||||
"orgnlPmtInfAndSts"
|
||||
})
|
||||
public class CBISDDStsRptLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "GrpHdr", required = true)
|
||||
protected MessageIdentification1 grpHdr;
|
||||
@XmlElement(name = "OrgnlGrpInfAndSts", required = true)
|
||||
protected CBIOriginalRequestInformation1 orgnlGrpInfAndSts;
|
||||
@XmlElement(name = "OrgnlPmtInfAndSts")
|
||||
protected List<CBIOriginalPaymentInformation1> orgnlPmtInfAndSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grpHdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public MessageIdentification1 getGrpHdr() {
|
||||
return grpHdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grpHdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setGrpHdr(MessageIdentification1 value) {
|
||||
this.grpHdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlGrpInfAndSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public CBIOriginalRequestInformation1 getOrgnlGrpInfAndSts() {
|
||||
return orgnlGrpInfAndSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlGrpInfAndSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlGrpInfAndSts(CBIOriginalRequestInformation1 value) {
|
||||
this.orgnlGrpInfAndSts = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the orgnlPmtInfAndSts 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 orgnlPmtInfAndSts property.
|
||||
*
|
||||
* <p>
|
||||
* For example, to add a new item, do as follows:
|
||||
* <pre>
|
||||
* getOrgnlPmtInfAndSts().add(newItem);
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
* <p>
|
||||
* Objects of the following type(s) are allowed in the list
|
||||
* {@link CBIOriginalPaymentInformation1 }
|
||||
*
|
||||
*
|
||||
*/
|
||||
public List<CBIOriginalPaymentInformation1> getOrgnlPmtInfAndSts() {
|
||||
if (orgnlPmtInfAndSts == null) {
|
||||
orgnlPmtInfAndSts = new ArrayList<CBIOriginalPaymentInformation1>();
|
||||
}
|
||||
return this.orgnlPmtInfAndSts;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDStsRptPhyMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDStsRptPhyMsg.00.01.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="CBIBdySDDStsRpt" type="{urn:CBI:xsd:CBIBdySDDStsRpt.00.01.01}CBIBdySDDStsRpt.00.01.01"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDStsRptPhyMsg.00.01.01", namespace = "urn:CBI:xsd:CBISDDStsRptPhyMsg.00.01.01", propOrder = {
|
||||
"cbiHdrTrt",
|
||||
"cbiHdrSrv",
|
||||
"cbiBdySDDStsRpt"
|
||||
})
|
||||
public class CBISDDStsRptPhyMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBIHdrTrt", required = true)
|
||||
protected CBIHdrTrt00107 cbiHdrTrt;
|
||||
@XmlElement(name = "CBIHdrSrv", required = true)
|
||||
protected CBIHdrSrv00107 cbiHdrSrv;
|
||||
@XmlElement(name = "CBIBdySDDStsRpt", required = true)
|
||||
protected CBIBdySDDStsRpt000101 cbiBdySDDStsRpt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrTrt00107 getCBIHdrTrt() {
|
||||
return cbiHdrTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrTrt(CBIHdrTrt00107 value) {
|
||||
this.cbiHdrTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrSrv00107 getCBIHdrSrv() {
|
||||
return cbiHdrSrv;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrSrv(CBIHdrSrv00107 value) {
|
||||
this.cbiHdrSrv = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiBdySDDStsRpt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBdySDDStsRpt000101 }
|
||||
*
|
||||
*/
|
||||
public CBIBdySDDStsRpt000101 getCBIBdySDDStsRpt() {
|
||||
return cbiBdySDDStsRpt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiBdySDDStsRpt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBdySDDStsRpt000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBIBdySDDStsRpt(CBIBdySDDStsRpt000101 value) {
|
||||
this.cbiBdySDDStsRpt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDTechValStsLogMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDTechValStsLogMsg.00.01.01">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="GrpHdr" type="{urn:CBI:xsd:CBISDDTechValStsLogMsg.00.01.01}MessageIdentification1"/>
|
||||
* <element name="OrgnlGrpInfAndSts" type="{urn:CBI:xsd:CBISDDTechValStsLogMsg.00.01.01}CBIOriginalRequestInformation1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDTechValStsLogMsg.00.01.01", propOrder = {
|
||||
"grpHdr",
|
||||
"orgnlGrpInfAndSts"
|
||||
})
|
||||
public class CBISDDTechValStsLogMsg000101 {
|
||||
|
||||
@XmlElement(name = "GrpHdr", required = true)
|
||||
protected MessageIdentification1 grpHdr;
|
||||
@XmlElement(name = "OrgnlGrpInfAndSts", required = true)
|
||||
protected CBIOriginalRequestInformation1 orgnlGrpInfAndSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà grpHdr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public MessageIdentification1 getGrpHdr() {
|
||||
return grpHdr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà grpHdr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MessageIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setGrpHdr(MessageIdentification1 value) {
|
||||
this.grpHdr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà orgnlGrpInfAndSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public CBIOriginalRequestInformation1 getOrgnlGrpInfAndSts() {
|
||||
return orgnlGrpInfAndSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà orgnlGrpInfAndSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIOriginalRequestInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setOrgnlGrpInfAndSts(CBIOriginalRequestInformation1 value) {
|
||||
this.orgnlGrpInfAndSts = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,118 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBISDDTechValStsPhyMsg.00.01.01 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBISDDTechValStsPhyMsg.00.01.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="CBIBdySDDTechValSts" type="{urn:CBI:xsd:CBIBdySDDTechValSts.00.01.01}CBIBdySDDTechValSts.00.01.01"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBISDDTechValStsPhyMsg.00.01.01", namespace = "urn:CBI:xsd:CBISDDTechValStsPhyMsg.00.01.01", propOrder = {
|
||||
"cbiHdrTrt",
|
||||
"cbiHdrSrv",
|
||||
"cbiBdySDDTechValSts"
|
||||
})
|
||||
public class CBISDDTechValStsPhyMsg000101 {
|
||||
|
||||
@XmlElement(name = "CBIHdrTrt", required = true)
|
||||
protected CBIHdrTrt00107 cbiHdrTrt;
|
||||
@XmlElement(name = "CBIHdrSrv", required = true)
|
||||
protected CBIHdrSrv00107 cbiHdrSrv;
|
||||
@XmlElement(name = "CBIBdySDDTechValSts", required = true)
|
||||
protected CBIBdySDDTechValSts000101 cbiBdySDDTechValSts;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrTrt00107 getCBIHdrTrt() {
|
||||
return cbiHdrTrt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrTrt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrTrt00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrTrt(CBIHdrTrt00107 value) {
|
||||
this.cbiHdrTrt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public CBIHdrSrv00107 getCBIHdrSrv() {
|
||||
return cbiHdrSrv;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiHdrSrv.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIHdrSrv00107 }
|
||||
*
|
||||
*/
|
||||
public void setCBIHdrSrv(CBIHdrSrv00107 value) {
|
||||
this.cbiHdrSrv = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cbiBdySDDTechValSts.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBdySDDTechValSts000101 }
|
||||
*
|
||||
*/
|
||||
public CBIBdySDDTechValSts000101 getCBIBdySDDTechValSts() {
|
||||
return cbiBdySDDTechValSts;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cbiBdySDDTechValSts.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBdySDDTechValSts000101 }
|
||||
*
|
||||
*/
|
||||
public void setCBIBdySDDTechValSts(CBIBdySDDTechValSts000101 value) {
|
||||
this.cbiBdySDDTechValSts = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIServiceLevel2Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIServiceLevel2Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="SEPA"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIServiceLevel2Code")
|
||||
@XmlEnum
|
||||
public enum CBIServiceLevel2Code {
|
||||
|
||||
SEPA;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIServiceLevel2Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,64 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 CBIServiceLevel3Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CBIServiceLevel3Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIServiceLevel2Code"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIServiceLevel3Choice", propOrder = {
|
||||
"cd"
|
||||
})
|
||||
public class CBIServiceLevel3Choice {
|
||||
|
||||
@XmlElement(name = "Cd", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIServiceLevel2Code cd;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà cd.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIServiceLevel2Code }
|
||||
*
|
||||
*/
|
||||
public CBIServiceLevel2Code getCd() {
|
||||
return cd;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà cd.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIServiceLevel2Code }
|
||||
*
|
||||
*/
|
||||
public void setCd(CBIServiceLevel2Code value) {
|
||||
this.cd = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,38 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBIServiceStatus1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBIServiceStatus1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="PART"/>
|
||||
* <enumeration value="RJCT"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBIServiceStatus1Code")
|
||||
@XmlEnum
|
||||
public enum CBIServiceStatus1Code {
|
||||
|
||||
PART,
|
||||
RJCT;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBIServiceStatus1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,67 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!-- edited with XMLSpy v2009 (http://www.altova.com) by Giacomo Paci (CONSORZIO CUSTOMER TO BUSINESS INTERACTION - CBI) -->
|
||||
<!-- Definizione del blocco di informazioni per la gestione della firma digitale incluso nella release 6.11 della documentazione Parte Generale -->
|
||||
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns="urn:CBI:xsd:CBISgnInf.001.04"
|
||||
targetNamespace="urn:CBI:xsd:CBISgnInf.001.04" elementFormDefault="qualified">
|
||||
<xs:element name="CBISgnInf" type="CBISgnInf.001.04">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Definizione del blocco di informazioni per la gestione della firma digitale incluso nella
|
||||
release 6.12 della documentazione Parte Generale.
|
||||
Presenta variazioni in seguito alla deliberazione CNIPA/DigitPA n.45 del 21 maggio 2009
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:complexType name="CBISgnInf.001.04">
|
||||
<xs:sequence>
|
||||
<xs:element name="SgnTyp" type="SignatureType">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Tipologia di firma digitale utilizzata.
|
||||
Può assumere i seguenti valori:
|
||||
1 = PKCS#7 detached
|
||||
2 = PKCS#7 attached
|
||||
3 = CAdES-BES detached
|
||||
4 = CAdES-BES attached
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="RefPlt" type="RecerencePlatform">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Codifica di riferimento:
|
||||
A = UTF-8
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="DtRef" type="ISODateTime">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Data e ora di apposizione della firma</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
<xs:element name="Sgnt" type="P7M">
|
||||
<xs:annotation>
|
||||
<xs:documentation>Busta di firma codificata in base64
|
||||
Il formato della busta deve essere coerente con la tipologia di firma indicata nel tag SgnTyp
|
||||
</xs:documentation>
|
||||
</xs:annotation>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
<xs:simpleType name="SignatureType">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="1"/>
|
||||
<xs:enumeration value="2"/>
|
||||
<xs:enumeration value="3"/>
|
||||
<xs:enumeration value="4"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="RecerencePlatform">
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:enumeration value="A"/>
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="ISODateTime">
|
||||
<xs:restriction base="xs:dateTime"/>
|
||||
</xs:simpleType>
|
||||
<xs:simpleType name="P7M">
|
||||
<xs:restriction base="xs:base64Binary"/>
|
||||
</xs:simpleType>
|
||||
</xs:schema>
|
||||
@@ -0,0 +1,148 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 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"
|
||||
})
|
||||
public class CBISgnInf00104 {
|
||||
|
||||
@XmlElement(name = "SgnTyp", required = true)
|
||||
protected String sgnTyp;
|
||||
@XmlElement(name = "RefPlt", required = true)
|
||||
@XmlSchemaType(name = "string")
|
||||
protected RecerencePlatform refPlt;
|
||||
@XmlElement(name = "DtRef", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar dtRef;
|
||||
@XmlElement(name = "Sgnt", required = true)
|
||||
protected byte[] sgnt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sgnTyp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSgnTyp() {
|
||||
return sgnTyp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sgnTyp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSgnTyp(String value) {
|
||||
this.sgnTyp = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà refPlt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RecerencePlatform }
|
||||
*
|
||||
*/
|
||||
public RecerencePlatform getRefPlt() {
|
||||
return refPlt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà refPlt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RecerencePlatform }
|
||||
*
|
||||
*/
|
||||
public void setRefPlt(RecerencePlatform value) {
|
||||
this.refPlt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dtRef.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getDtRef() {
|
||||
return dtRef;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dtRef.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setDtRef(XMLGregorianCalendar value) {
|
||||
this.dtRef = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà sgnt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* byte[]
|
||||
*/
|
||||
public byte[] getSgnt() {
|
||||
return sgnt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà sgnt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* byte[]
|
||||
*/
|
||||
public void setSgnt(byte[] value) {
|
||||
this.sgnt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,126 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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" minOccurs="0">
|
||||
* <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:CBISDDReqLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount" minOccurs="0"/>
|
||||
* <element name="Inf" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CBIStructuredRegulatoryReporting1", propOrder = {
|
||||
"cd",
|
||||
"amt",
|
||||
"inf"
|
||||
})
|
||||
public class CBIStructuredRegulatoryReporting1 {
|
||||
|
||||
@XmlElement(name = "Cd")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Amt")
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
@XmlElement(name = "Inf")
|
||||
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,36 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CBITransactionIndividualStatus1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="CBITransactionIndividualStatus1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="RJCT"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "CBITransactionIndividualStatus1Code")
|
||||
@XmlEnum
|
||||
public enum CBITransactionIndividualStatus1Code {
|
||||
|
||||
RJCT;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static CBITransactionIndividualStatus1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,42 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_01;
|
||||
|
||||
import javax.xml.bind.annotation.XmlEnum;
|
||||
import javax.xml.bind.annotation.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per ChargeBearerType1Code.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
* <p>
|
||||
* <pre>
|
||||
* <simpleType name="ChargeBearerType1Code">
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
|
||||
* <enumeration value="DEBT"/>
|
||||
* <enumeration value="CRED"/>
|
||||
* <enumeration value="SHAR"/>
|
||||
* <enumeration value="SLEV"/>
|
||||
* </restriction>
|
||||
* </simpleType>
|
||||
* </pre>
|
||||
*
|
||||
*/
|
||||
@XmlType(name = "ChargeBearerType1Code")
|
||||
@XmlEnum
|
||||
public enum ChargeBearerType1Code {
|
||||
|
||||
DEBT,
|
||||
CRED,
|
||||
SHAR,
|
||||
SLEV;
|
||||
|
||||
public String value() {
|
||||
return name();
|
||||
}
|
||||
|
||||
public static ChargeBearerType1Code fromValue(String v) {
|
||||
return valueOf(v);
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 ChargesInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ChargesInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* <element name="Pty" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CBIBranchAndFinancialInstitutionIdentification1"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ChargesInformation1", propOrder = {
|
||||
"amt",
|
||||
"pty"
|
||||
})
|
||||
public class ChargesInformation1 {
|
||||
|
||||
@XmlElement(name = "Amt", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
@XmlElement(name = "Pty", required = true)
|
||||
protected CBIBranchAndFinancialInstitutionIdentification1 pty;
|
||||
|
||||
/**
|
||||
* 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à pty.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification1 getPty() {
|
||||
return pty;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pty.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setPty(CBIBranchAndFinancialInstitutionIdentification1 value) {
|
||||
this.pty = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 ClearingSystemIdentification2Choice complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ClearingSystemIdentification2Choice">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <choice>
|
||||
* <element name="Cd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ExternalClearingSystemIdentification1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ClearingSystemIdentification2Choice", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class ClearingSystemIdentification2Choice {
|
||||
|
||||
@XmlElement(name = "Cd")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry")
|
||||
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.SSD_v00_01_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 ClearingSystemMemberIdentification2 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="ClearingSystemMemberIdentification2">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="ClrSysId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ClearingSystemIdentification2Choice" minOccurs="0"/>
|
||||
* <element name="MmbId" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "ClearingSystemMemberIdentification2", propOrder = {
|
||||
"clrSysId",
|
||||
"mmbId"
|
||||
})
|
||||
public class ClearingSystemMemberIdentification2 {
|
||||
|
||||
@XmlElement(name = "ClrSysId")
|
||||
protected ClearingSystemIdentification2Choice clrSysId;
|
||||
@XmlElement(name = "MmbId", required = true)
|
||||
protected String mmbId;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà clrSysId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link ClearingSystemIdentification2Choice }
|
||||
*
|
||||
*/
|
||||
public ClearingSystemIdentification2Choice getClrSysId() {
|
||||
return clrSysId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà clrSysId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link ClearingSystemIdentification2Choice }
|
||||
*
|
||||
*/
|
||||
public void setClrSysId(ClearingSystemIdentification2Choice value) {
|
||||
this.clrSysId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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,65 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_01;
|
||||
|
||||
import java.math.BigInteger;
|
||||
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"
|
||||
})
|
||||
public class CongruencyInformation {
|
||||
|
||||
@XmlElement(name = "SrvBdyNb", required = true)
|
||||
@XmlSchemaType(name = "positiveInteger")
|
||||
protected BigInteger srvBdyNb;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srvBdyNb.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public BigInteger getSrvBdyNb() {
|
||||
return srvBdyNb;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srvBdyNb.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigInteger }
|
||||
*
|
||||
*/
|
||||
public void setSrvBdyNb(BigInteger value) {
|
||||
this.srvBdyNb = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,380 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}NamePrefix2Code" minOccurs="0"/>
|
||||
* <element name="Nm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max140Text" minOccurs="0"/>
|
||||
* <element name="PhneNb" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="MobNb" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="FaxNb" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PhoneNumber" minOccurs="0"/>
|
||||
* <element name="EmailAdr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max2048Text" minOccurs="0"/>
|
||||
* <element name="EmailPurp" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="JobTitl" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Rspnsblty" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="Dept" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max70Text" minOccurs="0"/>
|
||||
* <element name="Othr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}OtherContact1" maxOccurs="unbounded" minOccurs="0"/>
|
||||
* <element name="PrefrdMtd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}PreferredContactMethod1Code" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "Contact4", propOrder = {
|
||||
"nmPrfx",
|
||||
"nm",
|
||||
"phneNb",
|
||||
"mobNb",
|
||||
"faxNb",
|
||||
"emailAdr",
|
||||
"emailPurp",
|
||||
"jobTitl",
|
||||
"rspnsblty",
|
||||
"dept",
|
||||
"othr",
|
||||
"prefrdMtd"
|
||||
})
|
||||
public class Contact4 {
|
||||
|
||||
@XmlElement(name = "NmPrfx")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected NamePrefix2Code nmPrfx;
|
||||
@XmlElement(name = "Nm")
|
||||
protected String nm;
|
||||
@XmlElement(name = "PhneNb")
|
||||
protected String phneNb;
|
||||
@XmlElement(name = "MobNb")
|
||||
protected String mobNb;
|
||||
@XmlElement(name = "FaxNb")
|
||||
protected String faxNb;
|
||||
@XmlElement(name = "EmailAdr")
|
||||
protected String emailAdr;
|
||||
@XmlElement(name = "EmailPurp")
|
||||
protected String emailPurp;
|
||||
@XmlElement(name = "JobTitl")
|
||||
protected String jobTitl;
|
||||
@XmlElement(name = "Rspnsblty")
|
||||
protected String rspnsblty;
|
||||
@XmlElement(name = "Dept")
|
||||
protected String dept;
|
||||
@XmlElement(name = "Othr")
|
||||
protected List<OtherContact1> othr;
|
||||
@XmlElement(name = "PrefrdMtd")
|
||||
@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.SSD_v00_01_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")
|
||||
@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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CreditorReferenceType2" minOccurs="0"/>
|
||||
* <element name="Ref" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceInformation2", propOrder = {
|
||||
"tp",
|
||||
"ref"
|
||||
})
|
||||
public class CreditorReferenceInformation2 {
|
||||
|
||||
@XmlElement(name = "Tp")
|
||||
protected CreditorReferenceType2 tp;
|
||||
@XmlElement(name = "Ref")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}DocumentType3Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceType1Choice", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class CreditorReferenceType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected DocumentType3Code cd;
|
||||
@XmlElement(name = "Prtry")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}CreditorReferenceType1Choice"/>
|
||||
* <element name="Issr" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CreditorReferenceType2", propOrder = {
|
||||
"cdOrPrtry",
|
||||
"issr"
|
||||
})
|
||||
public class CreditorReferenceType2 {
|
||||
|
||||
@XmlElement(name = "CdOrPrtry", required = true)
|
||||
protected CreditorReferenceType1Choice cdOrPrtry;
|
||||
@XmlElement(name = "Issr")
|
||||
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,147 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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.XmlType;
|
||||
|
||||
|
||||
/**
|
||||
* <p>Classe Java per CurrencyExchange13 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="CurrencyExchange13">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="SrcCcy" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveCurrencyCode"/>
|
||||
* <element name="TrgtCcy" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveCurrencyCode"/>
|
||||
* <element name="XchgRate" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}BaseOneRate"/>
|
||||
* <element name="UnitCcy" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveCurrencyCode" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "CurrencyExchange13", propOrder = {
|
||||
"srcCcy",
|
||||
"trgtCcy",
|
||||
"xchgRate",
|
||||
"unitCcy"
|
||||
})
|
||||
public class CurrencyExchange13 {
|
||||
|
||||
@XmlElement(name = "SrcCcy", required = true)
|
||||
protected String srcCcy;
|
||||
@XmlElement(name = "TrgtCcy", required = true)
|
||||
protected String trgtCcy;
|
||||
@XmlElement(name = "XchgRate", required = true)
|
||||
protected BigDecimal xchgRate;
|
||||
@XmlElement(name = "UnitCcy")
|
||||
protected String unitCcy;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà srcCcy.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getSrcCcy() {
|
||||
return srcCcy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà srcCcy.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setSrcCcy(String value) {
|
||||
this.srcCcy = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà trgtCcy.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getTrgtCcy() {
|
||||
return trgtCcy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà trgtCcy.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setTrgtCcy(String value) {
|
||||
this.trgtCcy = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà xchgRate.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public BigDecimal getXchgRate() {
|
||||
return xchgRate;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà xchgRate.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link BigDecimal }
|
||||
*
|
||||
*/
|
||||
public void setXchgRate(BigDecimal value) {
|
||||
this.xchgRate = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà unitCcy.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUnitCcy() {
|
||||
return unitCcy;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà unitCcy.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUnitCcy(String value) {
|
||||
this.unitCcy = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,94 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}ISODate"/>
|
||||
* <element name="DtTm" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODateTime"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DateAndDateTime2Choice", propOrder = {
|
||||
"dt",
|
||||
"dtTm"
|
||||
})
|
||||
public class DateAndDateTime2Choice {
|
||||
|
||||
@XmlElement(name = "Dt")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar dt;
|
||||
@XmlElement(name = "DtTm")
|
||||
@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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}ISODate"/>
|
||||
* <element name="PrvcOfBirth" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="CityOfBirth" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* <element name="CtryOfBirth" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CountryCode"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DateAndPlaceOfBirth1", propOrder = {
|
||||
"birthDt",
|
||||
"prvcOfBirth",
|
||||
"cityOfBirth",
|
||||
"ctryOfBirth"
|
||||
})
|
||||
public class DateAndPlaceOfBirth1 {
|
||||
|
||||
@XmlElement(name = "BirthDt", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar birthDt;
|
||||
@XmlElement(name = "PrvcOfBirth")
|
||||
protected String prvcOfBirth;
|
||||
@XmlElement(name = "CityOfBirth", required = true)
|
||||
protected String cityOfBirth;
|
||||
@XmlElement(name = "CtryOfBirth", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}ISODate"/>
|
||||
* <element name="ToDt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODate"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DatePeriod2", propOrder = {
|
||||
"frDt",
|
||||
"toDt"
|
||||
})
|
||||
public class DatePeriod2 {
|
||||
|
||||
@XmlElement(name = "FrDt", required = true)
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar frDt;
|
||||
@XmlElement(name = "ToDt", 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,149 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 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"
|
||||
})
|
||||
public class DiagnosticInformation {
|
||||
|
||||
@XmlElement(name = "UsrBnk")
|
||||
protected String usrBnk;
|
||||
@XmlElement(name = "DiagVers", required = true)
|
||||
protected String diagVers;
|
||||
@XmlElement(name = "ChkSbj", required = true)
|
||||
protected String chkSbj;
|
||||
@XmlElement(name = "ChkDt", required = true)
|
||||
@XmlSchemaType(name = "dateTime")
|
||||
protected XMLGregorianCalendar chkDt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà usrBnk.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getUsrBnk() {
|
||||
return usrBnk;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà usrBnk.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setUsrBnk(String value) {
|
||||
this.usrBnk = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà diagVers.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getDiagVers() {
|
||||
return diagVers;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà diagVers.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setDiagVers(String value) {
|
||||
this.diagVers = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chkSbj.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getChkSbj() {
|
||||
return chkSbj;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chkSbj.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setChkSbj(String value) {
|
||||
this.chkSbj = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà chkDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getChkDt() {
|
||||
return chkDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà chkDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setChkDt(XMLGregorianCalendar value) {
|
||||
this.chkDt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,121 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 DirectDebitTransaction1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DirectDebitTransaction1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="MndtRltdInf" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}MandateRelatedInformation1"/>
|
||||
* <element name="PreNtfctnId" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="PreNtfctnDt" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}ISODate" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DirectDebitTransaction1", propOrder = {
|
||||
"mndtRltdInf",
|
||||
"preNtfctnId",
|
||||
"preNtfctnDt"
|
||||
})
|
||||
public class DirectDebitTransaction1 {
|
||||
|
||||
@XmlElement(name = "MndtRltdInf", required = true)
|
||||
protected MandateRelatedInformation1 mndtRltdInf;
|
||||
@XmlElement(name = "PreNtfctnId")
|
||||
protected String preNtfctnId;
|
||||
@XmlElement(name = "PreNtfctnDt")
|
||||
@XmlSchemaType(name = "date")
|
||||
protected XMLGregorianCalendar preNtfctnDt;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà mndtRltdInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link MandateRelatedInformation1 }
|
||||
*
|
||||
*/
|
||||
public MandateRelatedInformation1 getMndtRltdInf() {
|
||||
return mndtRltdInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà mndtRltdInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link MandateRelatedInformation1 }
|
||||
*
|
||||
*/
|
||||
public void setMndtRltdInf(MandateRelatedInformation1 value) {
|
||||
this.mndtRltdInf = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà preNtfctnId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getPreNtfctnId() {
|
||||
return preNtfctnId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà preNtfctnId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setPreNtfctnId(String value) {
|
||||
this.preNtfctnId = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà preNtfctnDt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public XMLGregorianCalendar getPreNtfctnDt() {
|
||||
return preNtfctnDt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà preNtfctnDt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link XMLGregorianCalendar }
|
||||
*
|
||||
*/
|
||||
public void setPreNtfctnDt(XMLGregorianCalendar value) {
|
||||
this.preNtfctnDt = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,435 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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 DirectDebitTransactionInformation1 complex type.
|
||||
*
|
||||
* <p>Il seguente frammento di schema specifica il contenuto previsto contenuto in questa classe.
|
||||
*
|
||||
* <pre>
|
||||
* <complexType name="DirectDebitTransactionInformation1">
|
||||
* <complexContent>
|
||||
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
||||
* <sequence>
|
||||
* <element name="PmtId" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPaymentIdentification1"/>
|
||||
* <element name="PmtTpInf" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPaymentTypeInformation2" minOccurs="0"/>
|
||||
* <element name="InstdAmt" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* <element name="ChrgBr" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIChargeBearerTypeCode" minOccurs="0"/>
|
||||
* <element name="DrctDbtTx" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}DirectDebitTransaction1"/>
|
||||
* <element name="UltmtCdtr" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPartyIdentification3" minOccurs="0"/>
|
||||
* <element name="DbtrAgt" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIBranchAndFinancialInstitutionIdentification3" minOccurs="0"/>
|
||||
* <element name="Dbtr" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPartyIdentification4"/>
|
||||
* <element name="DbtrAcct" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBICashAccount7"/>
|
||||
* <element name="UltmtDbtr" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPartyIdentification4" minOccurs="0"/>
|
||||
* <element name="InstrForCdtrAgt" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}Max140Text" minOccurs="0"/>
|
||||
* <element name="Purp" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIPurpose1Choice" minOccurs="0"/>
|
||||
* <element name="RgltryRptg" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}CBIRegulatoryReporting1" maxOccurs="3" minOccurs="0"/>
|
||||
* <element name="RmtInf" type="{urn:CBI:xsd:CBISDDReqLogMsg.00.01.01}RemittanceInformation5" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DirectDebitTransactionInformation1", propOrder = {
|
||||
"pmtId",
|
||||
"pmtTpInf",
|
||||
"instdAmt",
|
||||
"chrgBr",
|
||||
"drctDbtTx",
|
||||
"ultmtCdtr",
|
||||
"dbtrAgt",
|
||||
"dbtr",
|
||||
"dbtrAcct",
|
||||
"ultmtDbtr",
|
||||
"instrForCdtrAgt",
|
||||
"purp",
|
||||
"rgltryRptg",
|
||||
"rmtInf"
|
||||
})
|
||||
public class DirectDebitTransactionInformation1 {
|
||||
|
||||
@XmlElement(name = "PmtId", required = true)
|
||||
protected CBIPaymentIdentification1 pmtId;
|
||||
@XmlElement(name = "PmtTpInf")
|
||||
protected CBIPaymentTypeInformation2 pmtTpInf;
|
||||
@XmlElement(name = "InstdAmt", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount instdAmt;
|
||||
@XmlElement(name = "ChrgBr")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CBIChargeBearerTypeCode chrgBr;
|
||||
@XmlElement(name = "DrctDbtTx", required = true)
|
||||
protected DirectDebitTransaction1 drctDbtTx;
|
||||
@XmlElement(name = "UltmtCdtr")
|
||||
protected CBIPartyIdentification3 ultmtCdtr;
|
||||
@XmlElement(name = "DbtrAgt")
|
||||
protected CBIBranchAndFinancialInstitutionIdentification3 dbtrAgt;
|
||||
@XmlElement(name = "Dbtr", required = true)
|
||||
protected CBIPartyIdentification4 dbtr;
|
||||
@XmlElement(name = "DbtrAcct", required = true)
|
||||
protected CBICashAccount7 dbtrAcct;
|
||||
@XmlElement(name = "UltmtDbtr")
|
||||
protected CBIPartyIdentification4 ultmtDbtr;
|
||||
@XmlElement(name = "InstrForCdtrAgt")
|
||||
protected String instrForCdtrAgt;
|
||||
@XmlElement(name = "Purp")
|
||||
protected CBIPurpose1Choice purp;
|
||||
@XmlElement(name = "RgltryRptg")
|
||||
protected List<CBIRegulatoryReporting1> rgltryRptg;
|
||||
@XmlElement(name = "RmtInf")
|
||||
protected RemittanceInformation5 rmtInf;
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà pmtId.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPaymentIdentification1 }
|
||||
*
|
||||
*/
|
||||
public CBIPaymentIdentification1 getPmtId() {
|
||||
return pmtId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà pmtId.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPaymentIdentification1 }
|
||||
*
|
||||
*/
|
||||
public void setPmtId(CBIPaymentIdentification1 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à 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* 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à drctDbtTx.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link DirectDebitTransaction1 }
|
||||
*
|
||||
*/
|
||||
public DirectDebitTransaction1 getDrctDbtTx() {
|
||||
return drctDbtTx;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà drctDbtTx.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link DirectDebitTransaction1 }
|
||||
*
|
||||
*/
|
||||
public void setDrctDbtTx(DirectDebitTransaction1 value) {
|
||||
this.drctDbtTx = 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;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public CBIBranchAndFinancialInstitutionIdentification3 getDbtrAgt() {
|
||||
return dbtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIBranchAndFinancialInstitutionIdentification3 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAgt(CBIBranchAndFinancialInstitutionIdentification3 value) {
|
||||
this.dbtrAgt = 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 CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public CBICashAccount7 getDbtrAcct() {
|
||||
return dbtrAcct;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà dbtrAcct.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBICashAccount7 }
|
||||
*
|
||||
*/
|
||||
public void setDbtrAcct(CBICashAccount7 value) {
|
||||
this.dbtrAcct = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public CBIPartyIdentification4 getUltmtDbtr() {
|
||||
return ultmtDbtr;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà ultmtDbtr.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPartyIdentification4 }
|
||||
*
|
||||
*/
|
||||
public void setUltmtDbtr(CBIPartyIdentification4 value) {
|
||||
this.ultmtDbtr = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà instrForCdtrAgt.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public String getInstrForCdtrAgt() {
|
||||
return instrForCdtrAgt;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà instrForCdtrAgt.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link String }
|
||||
*
|
||||
*/
|
||||
public void setInstrForCdtrAgt(String value) {
|
||||
this.instrForCdtrAgt = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Recupera il valore della proprietà purp.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link CBIPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public CBIPurpose1Choice getPurp() {
|
||||
return purp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà purp.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link CBIPurpose1Choice }
|
||||
*
|
||||
*/
|
||||
public void setPurp(CBIPurpose1Choice 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à rmtInf.
|
||||
*
|
||||
* @return
|
||||
* possible object is
|
||||
* {@link RemittanceInformation5 }
|
||||
*
|
||||
*/
|
||||
public RemittanceInformation5 getRmtInf() {
|
||||
return rmtInf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Imposta il valore della proprietà rmtInf.
|
||||
*
|
||||
* @param value
|
||||
* allowed object is
|
||||
* {@link RemittanceInformation5 }
|
||||
*
|
||||
*/
|
||||
public void setRmtInf(RemittanceInformation5 value) {
|
||||
this.rmtInf = value;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -0,0 +1,90 @@
|
||||
|
||||
package it.integry.ems.contabil.sepa.dto.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}DiscountAmountType1Choice" minOccurs="0"/>
|
||||
* <element name="Amt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscountAmountAndType1", propOrder = {
|
||||
"tp",
|
||||
"amt"
|
||||
})
|
||||
public class DiscountAmountAndType1 {
|
||||
|
||||
@XmlElement(name = "Tp")
|
||||
protected DiscountAmountType1Choice tp;
|
||||
@XmlElement(name = "Amt", 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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}ExternalDiscountAmountType1Code"/>
|
||||
* <element name="Prtry" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text"/>
|
||||
* </choice>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DiscountAmountType1Choice", propOrder = {
|
||||
"cd",
|
||||
"prtry"
|
||||
})
|
||||
public class DiscountAmountType1Choice {
|
||||
|
||||
@XmlElement(name = "Cd")
|
||||
protected String cd;
|
||||
@XmlElement(name = "Prtry")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}ActiveOrHistoricCurrencyAndAmount"/>
|
||||
* <element name="CdtDbtInd" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}CreditDebitCode" minOccurs="0"/>
|
||||
* <element name="Rsn" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max4Text" minOccurs="0"/>
|
||||
* <element name="AddtlInf" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max140Text" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentAdjustment1", propOrder = {
|
||||
"amt",
|
||||
"cdtDbtInd",
|
||||
"rsn",
|
||||
"addtlInf"
|
||||
})
|
||||
public class DocumentAdjustment1 {
|
||||
|
||||
@XmlElement(name = "Amt", required = true)
|
||||
protected ActiveOrHistoricCurrencyAndAmount amt;
|
||||
@XmlElement(name = "CdtDbtInd")
|
||||
@XmlSchemaType(name = "string")
|
||||
protected CreditDebitCode cdtDbtInd;
|
||||
@XmlElement(name = "Rsn")
|
||||
protected String rsn;
|
||||
@XmlElement(name = "AddtlInf")
|
||||
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.SSD_v00_01_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:CBISDDStsRptLogMsg.00.01.01}DocumentLineType1" minOccurs="0"/>
|
||||
* <element name="Nb" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}Max35Text" minOccurs="0"/>
|
||||
* <element name="RltdDt" type="{urn:CBI:xsd:CBISDDStsRptLogMsg.00.01.01}ISODate" minOccurs="0"/>
|
||||
* </sequence>
|
||||
* </restriction>
|
||||
* </complexContent>
|
||||
* </complexType>
|
||||
* </pre>
|
||||
*
|
||||
*
|
||||
*/
|
||||
@XmlAccessorType(XmlAccessType.FIELD)
|
||||
@XmlType(name = "DocumentLineIdentification1", propOrder = {
|
||||
"tp",
|
||||
"nb",
|
||||
"rltdDt"
|
||||
})
|
||||
public class DocumentLineIdentification1 {
|
||||
|
||||
@XmlElement(name = "Tp")
|
||||
protected DocumentLineType1 tp;
|
||||
@XmlElement(name = "Nb")
|
||||
protected String nb;
|
||||
@XmlElement(name = "RltdDt")
|
||||
@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;
|
||||
}
|
||||
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user