it.cnr.contab.doccont00.intcass.xmlbnl.SepaCreditTransfer Maven / Gradle / Ivy
/*
* Copyright (C) 2019 Consiglio Nazionale delle Ricerche
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see .
*/
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vJAXB 2.1.10 in JDK 6
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2013.07.16 at 09:58:11 AM CEST
//
package it.cnr.contab.doccont00.intcass.xmlbnl;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;
/**
* struttura SEPA Credit Transfer da valorizzare nel caso il tipo_pagamento="SEPA CREDIT TRANSFER"
*
* Java class for sepa_credit_transfer complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="sepa_credit_transfer">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="iban">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="34"/>
* <pattern value="[A-Z]{2}\d{2}[A-Z|0-9]{5,30}"/>
* </restriction>
* </simpleType>
* </element>
* <element name="bic" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="8"/>
* <maxLength value="11"/>
* <pattern value="[A-Z|a-z||0-9]{11}"/>
* <pattern value="[A-Z|a-z||0-9]{8}"/>
* </restriction>
* </simpleType>
* </element>
* <element name="identificativo_end_to_end" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="35"/>
* </restriction>
* </simpleType>
* </element>
* <element name="identificativo_category_purpose" minOccurs="0">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="code">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="4"/>
* <enumeration value="SALA"/>
* <enumeration value="PENS"/>
* </restriction>
* </simpleType>
* </element>
* <element name="proprietary">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="35"/>
* </restriction>
* </simpleType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "sepa_credit_transfer", propOrder = {
"iban",
"bic",
"identificativoEndToEnd",
"identificativoCategoryPurpose"
})
public class SepaCreditTransfer {
@XmlElement(required = true)
protected String iban;
protected String bic;
@XmlElement(name = "identificativo_end_to_end")
protected String identificativoEndToEnd;
@XmlElement(name = "identificativo_category_purpose")
protected SepaCreditTransfer.IdentificativoCategoryPurpose identificativoCategoryPurpose;
/**
* Gets the value of the iban property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIban() {
return iban;
}
/**
* Sets the value of the iban property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIban(String value) {
this.iban = value;
}
/**
* Gets the value of the bic property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getBic() {
return bic;
}
/**
* Sets the value of the bic property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setBic(String value) {
this.bic = value;
}
/**
* Gets the value of the identificativoEndToEnd property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentificativoEndToEnd() {
return identificativoEndToEnd;
}
/**
* Sets the value of the identificativoEndToEnd property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentificativoEndToEnd(String value) {
this.identificativoEndToEnd = value;
}
/**
* Gets the value of the identificativoCategoryPurpose property.
*
* @return
* possible object is
* {@link SepaCreditTransfer.IdentificativoCategoryPurpose }
*
*/
public SepaCreditTransfer.IdentificativoCategoryPurpose getIdentificativoCategoryPurpose() {
return identificativoCategoryPurpose;
}
/**
* Sets the value of the identificativoCategoryPurpose property.
*
* @param value
* allowed object is
* {@link SepaCreditTransfer.IdentificativoCategoryPurpose }
*
*/
public void setIdentificativoCategoryPurpose(SepaCreditTransfer.IdentificativoCategoryPurpose value) {
this.identificativoCategoryPurpose = value;
}
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <choice>
* <element name="code">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="4"/>
* <enumeration value="SALA"/>
* <enumeration value="PENS"/>
* </restriction>
* </simpleType>
* </element>
* <element name="proprietary">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* <minLength value="1"/>
* <maxLength value="35"/>
* </restriction>
* </simpleType>
* </element>
* </choice>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"code",
"proprietary"
})
public static class IdentificativoCategoryPurpose {
protected String code;
protected String proprietary;
/**
* Gets the value of the code property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCode() {
return code;
}
/**
* Sets the value of the code property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCode(String value) {
this.code = value;
}
/**
* Gets the value of the proprietary property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getProprietary() {
return proprietary;
}
/**
* Sets the value of the proprietary property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setProprietary(String value) {
this.proprietary = value;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy