| 1 | //
|
|---|
| 2 | // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.5
|
|---|
| 3 | // Voir <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
|
|---|
| 4 | // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source.
|
|---|
| 5 | // Généré le : 2012.03.08 à 06:24:59 PM CET
|
|---|
| 6 | //
|
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 | package neptune;
|
|---|
| 10 |
|
|---|
| 11 | import java.math.BigInteger;
|
|---|
| 12 | import javax.xml.bind.annotation.XmlAccessType;
|
|---|
| 13 | import javax.xml.bind.annotation.XmlAccessorType;
|
|---|
| 14 | import javax.xml.bind.annotation.XmlElement;
|
|---|
| 15 | import javax.xml.bind.annotation.XmlType;
|
|---|
| 16 |
|
|---|
| 17 |
|
|---|
| 18 | /**
|
|---|
| 19 | * Type for of a specific need
|
|---|
| 20 | *
|
|---|
| 21 | * <p>Classe Java pour UserNeedStructure complex type.
|
|---|
| 22 | *
|
|---|
| 23 | * <p>Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe.
|
|---|
| 24 | *
|
|---|
| 25 | * <pre>
|
|---|
| 26 | * <complexType name="UserNeedStructure">
|
|---|
| 27 | * <complexContent>
|
|---|
| 28 | * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
|
|---|
| 29 | * <sequence>
|
|---|
| 30 | * <group ref="{http://www.ifopt.org.uk/acsb}UserNeedGroup"/>
|
|---|
| 31 | * <element name="Excluded" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
|
|---|
| 32 | * <element name="NeedRanking" type="{http://www.w3.org/2001/XMLSchema}integer" minOccurs="0"/>
|
|---|
| 33 | * <element name="Extensions" type="{http://www.w3.org/2001/XMLSchema}anyType" minOccurs="0"/>
|
|---|
| 34 | * </sequence>
|
|---|
| 35 | * </restriction>
|
|---|
| 36 | * </complexContent>
|
|---|
| 37 | * </complexType>
|
|---|
| 38 | * </pre>
|
|---|
| 39 | *
|
|---|
| 40 | *
|
|---|
| 41 | */
|
|---|
| 42 | @XmlAccessorType(XmlAccessType.FIELD)
|
|---|
| 43 | @XmlType(name = "UserNeedStructure", namespace = "http://www.ifopt.org.uk/acsb", propOrder = {
|
|---|
| 44 | "mobilityNeed",
|
|---|
| 45 | "psychosensoryNeed",
|
|---|
| 46 | "medicalNeed",
|
|---|
| 47 | "encumbranceNeed",
|
|---|
| 48 | "excluded",
|
|---|
| 49 | "needRanking",
|
|---|
| 50 | "extensions"
|
|---|
| 51 | })
|
|---|
| 52 | public class UserNeedStructure {
|
|---|
| 53 |
|
|---|
| 54 | @XmlElement(name = "MobilityNeed")
|
|---|
| 55 | protected MobilityEnumeration mobilityNeed;
|
|---|
| 56 | @XmlElement(name = "PsychosensoryNeed")
|
|---|
| 57 | protected PyschosensoryNeedEnumeration psychosensoryNeed;
|
|---|
| 58 | @XmlElement(name = "MedicalNeed")
|
|---|
| 59 | protected MedicalNeedEnumeration medicalNeed;
|
|---|
| 60 | @XmlElement(name = "EncumbranceNeed")
|
|---|
| 61 | protected EncumbranceEnumeration encumbranceNeed;
|
|---|
| 62 | @XmlElement(name = "Excluded")
|
|---|
| 63 | protected Boolean excluded;
|
|---|
| 64 | @XmlElement(name = "NeedRanking")
|
|---|
| 65 | protected BigInteger needRanking;
|
|---|
| 66 | @XmlElement(name = "Extensions")
|
|---|
| 67 | protected Object extensions;
|
|---|
| 68 |
|
|---|
| 69 | /**
|
|---|
| 70 | * Obtient la valeur de la propriété mobilityNeed.
|
|---|
| 71 | *
|
|---|
| 72 | * @return
|
|---|
| 73 | * possible object is
|
|---|
| 74 | * {@link MobilityEnumeration }
|
|---|
| 75 | *
|
|---|
| 76 | */
|
|---|
| 77 | public MobilityEnumeration getMobilityNeed() {
|
|---|
| 78 | return mobilityNeed;
|
|---|
| 79 | }
|
|---|
| 80 |
|
|---|
| 81 | /**
|
|---|
| 82 | * Définit la valeur de la propriété mobilityNeed.
|
|---|
| 83 | *
|
|---|
| 84 | * @param value
|
|---|
| 85 | * allowed object is
|
|---|
| 86 | * {@link MobilityEnumeration }
|
|---|
| 87 | *
|
|---|
| 88 | */
|
|---|
| 89 | public void setMobilityNeed(MobilityEnumeration value) {
|
|---|
| 90 | this.mobilityNeed = value;
|
|---|
| 91 | }
|
|---|
| 92 |
|
|---|
| 93 | /**
|
|---|
| 94 | * Obtient la valeur de la propriété psychosensoryNeed.
|
|---|
| 95 | *
|
|---|
| 96 | * @return
|
|---|
| 97 | * possible object is
|
|---|
| 98 | * {@link PyschosensoryNeedEnumeration }
|
|---|
| 99 | *
|
|---|
| 100 | */
|
|---|
| 101 | public PyschosensoryNeedEnumeration getPsychosensoryNeed() {
|
|---|
| 102 | return psychosensoryNeed;
|
|---|
| 103 | }
|
|---|
| 104 |
|
|---|
| 105 | /**
|
|---|
| 106 | * Définit la valeur de la propriété psychosensoryNeed.
|
|---|
| 107 | *
|
|---|
| 108 | * @param value
|
|---|
| 109 | * allowed object is
|
|---|
| 110 | * {@link PyschosensoryNeedEnumeration }
|
|---|
| 111 | *
|
|---|
| 112 | */
|
|---|
| 113 | public void setPsychosensoryNeed(PyschosensoryNeedEnumeration value) {
|
|---|
| 114 | this.psychosensoryNeed = value;
|
|---|
| 115 | }
|
|---|
| 116 |
|
|---|
| 117 | /**
|
|---|
| 118 | * Obtient la valeur de la propriété medicalNeed.
|
|---|
| 119 | *
|
|---|
| 120 | * @return
|
|---|
| 121 | * possible object is
|
|---|
| 122 | * {@link MedicalNeedEnumeration }
|
|---|
| 123 | *
|
|---|
| 124 | */
|
|---|
| 125 | public MedicalNeedEnumeration getMedicalNeed() {
|
|---|
| 126 | return medicalNeed;
|
|---|
| 127 | }
|
|---|
| 128 |
|
|---|
| 129 | /**
|
|---|
| 130 | * Définit la valeur de la propriété medicalNeed.
|
|---|
| 131 | *
|
|---|
| 132 | * @param value
|
|---|
| 133 | * allowed object is
|
|---|
| 134 | * {@link MedicalNeedEnumeration }
|
|---|
| 135 | *
|
|---|
| 136 | */
|
|---|
| 137 | public void setMedicalNeed(MedicalNeedEnumeration value) {
|
|---|
| 138 | this.medicalNeed = value;
|
|---|
| 139 | }
|
|---|
| 140 |
|
|---|
| 141 | /**
|
|---|
| 142 | * Obtient la valeur de la propriété encumbranceNeed.
|
|---|
| 143 | *
|
|---|
| 144 | * @return
|
|---|
| 145 | * possible object is
|
|---|
| 146 | * {@link EncumbranceEnumeration }
|
|---|
| 147 | *
|
|---|
| 148 | */
|
|---|
| 149 | public EncumbranceEnumeration getEncumbranceNeed() {
|
|---|
| 150 | return encumbranceNeed;
|
|---|
| 151 | }
|
|---|
| 152 |
|
|---|
| 153 | /**
|
|---|
| 154 | * Définit la valeur de la propriété encumbranceNeed.
|
|---|
| 155 | *
|
|---|
| 156 | * @param value
|
|---|
| 157 | * allowed object is
|
|---|
| 158 | * {@link EncumbranceEnumeration }
|
|---|
| 159 | *
|
|---|
| 160 | */
|
|---|
| 161 | public void setEncumbranceNeed(EncumbranceEnumeration value) {
|
|---|
| 162 | this.encumbranceNeed = value;
|
|---|
| 163 | }
|
|---|
| 164 |
|
|---|
| 165 | /**
|
|---|
| 166 | * Obtient la valeur de la propriété excluded.
|
|---|
| 167 | *
|
|---|
| 168 | * @return
|
|---|
| 169 | * possible object is
|
|---|
| 170 | * {@link Boolean }
|
|---|
| 171 | *
|
|---|
| 172 | */
|
|---|
| 173 | public Boolean isExcluded() {
|
|---|
| 174 | return excluded;
|
|---|
| 175 | }
|
|---|
| 176 |
|
|---|
| 177 | /**
|
|---|
| 178 | * Définit la valeur de la propriété excluded.
|
|---|
| 179 | *
|
|---|
| 180 | * @param value
|
|---|
| 181 | * allowed object is
|
|---|
| 182 | * {@link Boolean }
|
|---|
| 183 | *
|
|---|
| 184 | */
|
|---|
| 185 | public void setExcluded(Boolean value) {
|
|---|
| 186 | this.excluded = value;
|
|---|
| 187 | }
|
|---|
| 188 |
|
|---|
| 189 | /**
|
|---|
| 190 | * Obtient la valeur de la propriété needRanking.
|
|---|
| 191 | *
|
|---|
| 192 | * @return
|
|---|
| 193 | * possible object is
|
|---|
| 194 | * {@link BigInteger }
|
|---|
| 195 | *
|
|---|
| 196 | */
|
|---|
| 197 | public BigInteger getNeedRanking() {
|
|---|
| 198 | return needRanking;
|
|---|
| 199 | }
|
|---|
| 200 |
|
|---|
| 201 | /**
|
|---|
| 202 | * Définit la valeur de la propriété needRanking.
|
|---|
| 203 | *
|
|---|
| 204 | * @param value
|
|---|
| 205 | * allowed object is
|
|---|
| 206 | * {@link BigInteger }
|
|---|
| 207 | *
|
|---|
| 208 | */
|
|---|
| 209 | public void setNeedRanking(BigInteger value) {
|
|---|
| 210 | this.needRanking = value;
|
|---|
| 211 | }
|
|---|
| 212 |
|
|---|
| 213 | /**
|
|---|
| 214 | * Obtient la valeur de la propriété extensions.
|
|---|
| 215 | *
|
|---|
| 216 | * @return
|
|---|
| 217 | * possible object is
|
|---|
| 218 | * {@link Object }
|
|---|
| 219 | *
|
|---|
| 220 | */
|
|---|
| 221 | public Object getExtensions() {
|
|---|
| 222 | return extensions;
|
|---|
| 223 | }
|
|---|
| 224 |
|
|---|
| 225 | /**
|
|---|
| 226 | * Définit la valeur de la propriété extensions.
|
|---|
| 227 | *
|
|---|
| 228 | * @param value
|
|---|
| 229 | * allowed object is
|
|---|
| 230 | * {@link Object }
|
|---|
| 231 | *
|
|---|
| 232 | */
|
|---|
| 233 | public void setExtensions(Object value) {
|
|---|
| 234 | this.extensions = value;
|
|---|
| 235 | }
|
|---|
| 236 |
|
|---|
| 237 | }
|
|---|