StatesType.java
/*
* GovWay - A customizable API Gateway
* https://govway.org
*
* Copyright (c) 2005-2024 Link.it srl (https://link.it).
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 3, as published by
* the Free Software Foundation.
*
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
package it.gov.spcoop.sica.wsbl;
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.XmlType;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
/** <p>Java class for statesType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* <complexType name="statesType">
* <sequence>
* <element name="state-initial" type="{http://spcoop.gov.it/sica/wsbl}StateTypeInitial" minOccurs="1" maxOccurs="1"/>
* <element name="state-final" type="{http://spcoop.gov.it/sica/wsbl}StateTypeFinal" minOccurs="1" maxOccurs="1"/>
* <element name="state" type="{http://spcoop.gov.it/sica/wsbl}StateTypeNormal" minOccurs="1" maxOccurs="unbounded"/>
* </sequence>
* </complexType>
* </pre>
*
* @version $Rev$, $Date$
*
* @author Poli Andrea (poli@link.it)
* @author $Author$
* */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "statesType",
propOrder = {
"stateInitial",
"stateFinal",
"state"
}
)
@XmlRootElement(name = "statesType")
public class StatesType extends org.openspcoop2.utils.beans.BaseBean implements Serializable , Cloneable {
public StatesType() {
super();
}
public StateTypeInitial getStateInitial() {
return this.stateInitial;
}
public void setStateInitial(StateTypeInitial stateInitial) {
this.stateInitial = stateInitial;
}
public StateTypeFinal getStateFinal() {
return this.stateFinal;
}
public void setStateFinal(StateTypeFinal stateFinal) {
this.stateFinal = stateFinal;
}
public void addState(StateTypeNormal state) {
this.state.add(state);
}
public StateTypeNormal getState(int index) {
return this.state.get( index );
}
public StateTypeNormal removeState(int index) {
return this.state.remove( index );
}
public List<StateTypeNormal> getStateList() {
return this.state;
}
public void setStateList(List<StateTypeNormal> state) {
this.state=state;
}
public int sizeStateList() {
return this.state.size();
}
private static final long serialVersionUID = 1L;
@XmlElement(name="state-initial",required=true,nillable=false)
protected StateTypeInitial stateInitial;
@XmlElement(name="state-final",required=true,nillable=false)
protected StateTypeFinal stateFinal;
@XmlElement(name="state",required=true,nillable=false)
private List<StateTypeNormal> state = new ArrayList<>();
/**
* Use method getStateList
* @return List<StateTypeNormal>
*/
public List<StateTypeNormal> getState() {
return this.getStateList();
}
/**
* Use method setStateList
* @param state List<StateTypeNormal>
*/
public void setState(List<StateTypeNormal> state) {
this.setStateList(state);
}
/**
* Use method sizeStateList
* @return lunghezza della lista
*/
public int sizeState() {
return this.sizeStateList();
}
}