it.cnr.contab.doccont00.intcass.xmlbnl.MessaggioRicezioneFlusso 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 10:15:32 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.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;
/**
* 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">
* <sequence>
* <element name="codice_ABI_BT">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* </restriction>
* </simpleType>
* </element>
* <element name="identificativo_flusso" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* </restriction>
* </simpleType>
* </element>
* <element name="identificativo_flusso_BT" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* </restriction>
* </simpleType>
* </element>
* <element name="data_ora_creazione_flusso" type="{http://www.w3.org/2001/XMLSchema}dateTime"/>
* <element name="codice_ente_BT" minOccurs="0">
* <simpleType>
* <restriction base="{http://www.w3.org/2001/XMLSchema}string">
* </restriction>
* </simpleType>
* </element>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"codiceABIBT",
"identificativoFlusso",
"identificativoFlussoBT",
"dataOraCreazioneFlusso",
"codiceEnteBT"
})
@XmlRootElement(name = "messaggio_ricezione_flusso")
public class MessaggioRicezioneFlusso {
@XmlElement(name = "codice_ABI_BT", required = true)
protected String codiceABIBT;
@XmlElement(name = "identificativo_flusso")
protected String identificativoFlusso;
@XmlElement(name = "identificativo_flusso_BT")
protected String identificativoFlussoBT;
@XmlElement(name = "data_ora_creazione_flusso", required = true)
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dataOraCreazioneFlusso;
@XmlElement(name = "codice_ente_BT")
protected String codiceEnteBT;
/**
* Gets the value of the codiceABIBT property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodiceABIBT() {
return codiceABIBT;
}
/**
* Sets the value of the codiceABIBT property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodiceABIBT(String value) {
this.codiceABIBT = value;
}
/**
* Gets the value of the identificativoFlusso property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentificativoFlusso() {
return identificativoFlusso;
}
/**
* Sets the value of the identificativoFlusso property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentificativoFlusso(String value) {
this.identificativoFlusso = value;
}
/**
* Gets the value of the identificativoFlussoBT property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdentificativoFlussoBT() {
return identificativoFlussoBT;
}
/**
* Sets the value of the identificativoFlussoBT property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdentificativoFlussoBT(String value) {
this.identificativoFlussoBT = value;
}
/**
* Gets the value of the dataOraCreazioneFlusso property.
*
* @return
* possible object is
* {@link XMLGregorianCalendar }
*
*/
public XMLGregorianCalendar getDataOraCreazioneFlusso() {
return dataOraCreazioneFlusso;
}
/**
* Sets the value of the dataOraCreazioneFlusso property.
*
* @param value
* allowed object is
* {@link XMLGregorianCalendar }
*
*/
public void setDataOraCreazioneFlusso(XMLGregorianCalendar value) {
this.dataOraCreazioneFlusso = value;
}
/**
* Gets the value of the codiceEnteBT property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodiceEnteBT() {
return codiceEnteBT;
}
/**
* Sets the value of the codiceEnteBT property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodiceEnteBT(String value) {
this.codiceEnteBT = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy