fr.lixbox.io.edi.plugin.model.jaxb.SegGroupDesc Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of lixbox-edi Show documentation
Show all versions of lixbox-edi Show documentation
Ce dépôt contient le code de la librairie lixbox-edi
The newest version!
/*******************************************************************************
*
* FRAMEWORK Lixbox
* ==================
*
* This file is part of lixbox-io.
*
* lixbox-supervision is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* lixbox-supervision 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with lixbox-io. If not, see
*
* @AUTHOR Lixbox-team
*
******************************************************************************/
package fr.lixbox.io.edi.plugin.model.jaxb;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlType;
/**
*
* Java class for segGroupDesc complex type.
*
*
* The following schema fragment specifies the expected content contained within
* this class.
*
*
* <complexType name="segGroupDesc">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="segGroupDesc" type="{}segGroupDesc" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="initBalise" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="occurence" use="required" type="{http://www.w3.org/2001/XMLSchema}int" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "segGroupDesc", propOrder = { "segGroupDesc" })
public class SegGroupDesc implements Serializable
{
private static final long serialVersionUID = 8946062327101527045L;
private List segGroupDesc;
@XmlAttribute(required = true) protected String name;
@XmlAttribute(required = true) protected String initBalise;
@XmlAttribute(required = true) protected int occurence;
public List getSegGroupDesc()
{
if (segGroupDesc == null)
{
segGroupDesc = new ArrayList<>();
}
return this.segGroupDesc;
}
public String getName()
{
return name;
}
public void setName(String value)
{
this.name = value;
}
public String getInitBalise()
{
return initBalise;
}
public void setInitBalise(String value)
{
this.initBalise = value;
}
public int getOccurence()
{
return occurence;
}
public void setOccurence(int value)
{
this.occurence = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy