![JAR search and dependency download from the Maven repository](/logo.png)
uk.org.acbs.siri21.UserNeedStructure Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of siri-java-model Show documentation
Show all versions of siri-java-model Show documentation
Java objects based on the public SIRI XSDs
The newest version!
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.2
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2025.01.07 at 02:19:41 PM UTC
//
package uk.org.acbs.siri21;
import java.io.Serializable;
import java.math.BigInteger;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* Type for of a specific need.
*
* Java class for UserNeedStructure complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="UserNeedStructure">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <group ref="{http://www.ifopt.org.uk/acsb}UserNeedGroup"/>
* <element name="Excluded" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
* <element name="NeedRanking" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
* <element name="Extensions" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "UserNeedStructure", propOrder = {
"encumbranceNeed",
"medicalNeed",
"psychosensoryNeed",
"mobilityNeed",
"excluded",
"needRanking",
"extensions"
})
public class UserNeedStructure
implements Serializable
{
@XmlElement(name = "EncumbranceNeed")
@XmlSchemaType(name = "NMTOKEN")
protected EncumbranceEnumeration encumbranceNeed;
@XmlElement(name = "MedicalNeed")
protected MedicalNeedEnumeration medicalNeed;
@XmlElement(name = "PsychosensoryNeed")
@XmlSchemaType(name = "NMTOKEN")
protected PyschosensoryNeedEnumeration psychosensoryNeed;
@XmlElement(name = "MobilityNeed")
@XmlSchemaType(name = "NMTOKEN")
protected MobilityEnumeration mobilityNeed;
@XmlElement(name = "Excluded")
protected Boolean excluded;
@XmlElement(name = "NeedRanking")
protected BigInteger needRanking;
@XmlElement(name = "Extensions")
protected Object extensions;
/**
* Gets the value of the encumbranceNeed property.
*
* @return
* possible object is
* {@link EncumbranceEnumeration }
*
*/
public EncumbranceEnumeration getEncumbranceNeed() {
return encumbranceNeed;
}
/**
* Sets the value of the encumbranceNeed property.
*
* @param value
* allowed object is
* {@link EncumbranceEnumeration }
*
*/
public void setEncumbranceNeed(EncumbranceEnumeration value) {
this.encumbranceNeed = value;
}
/**
* Gets the value of the medicalNeed property.
*
* @return
* possible object is
* {@link MedicalNeedEnumeration }
*
*/
public MedicalNeedEnumeration getMedicalNeed() {
return medicalNeed;
}
/**
* Sets the value of the medicalNeed property.
*
* @param value
* allowed object is
* {@link MedicalNeedEnumeration }
*
*/
public void setMedicalNeed(MedicalNeedEnumeration value) {
this.medicalNeed = value;
}
/**
* Gets the value of the psychosensoryNeed property.
*
* @return
* possible object is
* {@link PyschosensoryNeedEnumeration }
*
*/
public PyschosensoryNeedEnumeration getPsychosensoryNeed() {
return psychosensoryNeed;
}
/**
* Sets the value of the psychosensoryNeed property.
*
* @param value
* allowed object is
* {@link PyschosensoryNeedEnumeration }
*
*/
public void setPsychosensoryNeed(PyschosensoryNeedEnumeration value) {
this.psychosensoryNeed = value;
}
/**
* Gets the value of the mobilityNeed property.
*
* @return
* possible object is
* {@link MobilityEnumeration }
*
*/
public MobilityEnumeration getMobilityNeed() {
return mobilityNeed;
}
/**
* Sets the value of the mobilityNeed property.
*
* @param value
* allowed object is
* {@link MobilityEnumeration }
*
*/
public void setMobilityNeed(MobilityEnumeration value) {
this.mobilityNeed = value;
}
/**
* Gets the value of the excluded property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isExcluded() {
return excluded;
}
/**
* Sets the value of the excluded property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setExcluded(Boolean value) {
this.excluded = value;
}
/**
* Gets the value of the needRanking property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getNeedRanking() {
return needRanking;
}
/**
* Sets the value of the needRanking property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setNeedRanking(BigInteger value) {
this.needRanking = value;
}
/**
* Gets the value of the extensions property.
*
* @return
* possible object is
* {@link Object }
*
*/
public Object getExtensions() {
return extensions;
}
/**
* Sets the value of the extensions property.
*
* @param value
* allowed object is
* {@link Object }
*
*/
public void setExtensions(Object value) {
this.extensions = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy