// // Ce fichier a été généré par l'implémentation de référence JavaTM Architecture for XML Binding (JAXB), v2.2.8-b130911.1802 // Voir http://java.sun.com/xml/jaxb // Toute modification apportée à ce fichier sera perdue lors de la recompilation du schéma source. // Généré le : 2019.08.04 à 06:45:14 PM CEST // package org.avmdti.AmsatList.generated; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlElements; import javax.xml.bind.annotation.XmlRootElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** *

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{}Name"/>
 *         <element ref="{}NasaID"/>
 *         <element ref="{}Status"/>
 *         <element ref="{}LaunchData"/>
 *         <element ref="{}OSCARNumber"/>
 *         <element ref="{}SatelliteInformationStatus"/>
 *         <element ref="{}UpdateDate"/>
 *         <choice maxOccurs="unbounded">
 *           <element ref="{}Information"/>
 *           <element ref="{}RadioData"/>
 *         </choice>
 *         <element ref="{}TelemetryData" minOccurs="0"/>
 *         <element ref="{}Description" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "name", "nasaID", "status", "launchData", "oscarNumber", "satelliteInformationStatus", "updateDate", "informationOrRadioData", "telemetryData", "description" }) @XmlRootElement(name = "Satellites") public class Satellites { @XmlElement(name = "Name", required = true) protected String name; @XmlElement(name = "NasaID", required = true) protected String nasaID; @XmlElement(name = "Status", required = true) protected String status; @XmlElement(name = "LaunchData", required = true) protected LaunchData launchData; @XmlElement(name = "OSCARNumber", required = true) protected String oscarNumber; @XmlElement(name = "SatelliteInformationStatus", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NCName") protected String satelliteInformationStatus; @XmlElement(name = "UpdateDate", required = true) @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "NMTOKEN") protected String updateDate; @XmlElements({ @XmlElement(name = "Information", type = Information.class), @XmlElement(name = "RadioData", type = RadioData.class) }) protected List informationOrRadioData; @XmlElement(name = "TelemetryData") protected TelemetryData telemetryData; @XmlElement(name = "Description") protected Description description; /** * Obtient la valeur de la propriété name. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Définit la valeur de la propriété name. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Obtient la valeur de la propriété nasaID. * * @return * possible object is * {@link String } * */ public String getNasaID() { return nasaID; } /** * Définit la valeur de la propriété nasaID. * * @param value * allowed object is * {@link String } * */ public void setNasaID(String value) { this.nasaID = value; } /** * Obtient la valeur de la propriété status. * * @return * possible object is * {@link String } * */ public String getStatus() { return status; } /** * Définit la valeur de la propriété status. * * @param value * allowed object is * {@link String } * */ public void setStatus(String value) { this.status = value; } /** * Obtient la valeur de la propriété launchData. * * @return * possible object is * {@link LaunchData } * */ public LaunchData getLaunchData() { return launchData; } /** * Définit la valeur de la propriété launchData. * * @param value * allowed object is * {@link LaunchData } * */ public void setLaunchData(LaunchData value) { this.launchData = value; } /** * Obtient la valeur de la propriété oscarNumber. * * @return * possible object is * {@link String } * */ public String getOSCARNumber() { return oscarNumber; } /** * Définit la valeur de la propriété oscarNumber. * * @param value * allowed object is * {@link String } * */ public void setOSCARNumber(String value) { this.oscarNumber = value; } /** * Obtient la valeur de la propriété satelliteInformationStatus. * * @return * possible object is * {@link String } * */ public String getSatelliteInformationStatus() { return satelliteInformationStatus; } /** * Définit la valeur de la propriété satelliteInformationStatus. * * @param value * allowed object is * {@link String } * */ public void setSatelliteInformationStatus(String value) { this.satelliteInformationStatus = value; } /** * Obtient la valeur de la propriété updateDate. * * @return * possible object is * {@link String } * */ public String getUpdateDate() { return updateDate; } /** * Définit la valeur de la propriété updateDate. * * @param value * allowed object is * {@link String } * */ public void setUpdateDate(String value) { this.updateDate = value; } /** * Gets the value of the informationOrRadioData property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a set method for the informationOrRadioData property. * *

* For example, to add a new item, do as follows: *

     *    getInformationOrRadioData().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link Information } * {@link RadioData } * * */ public List getInformationOrRadioData() { if (informationOrRadioData == null) { informationOrRadioData = new ArrayList(); } return this.informationOrRadioData; } /** * Obtient la valeur de la propriété telemetryData. * * @return * possible object is * {@link TelemetryData } * */ public TelemetryData getTelemetryData() { return telemetryData; } /** * Définit la valeur de la propriété telemetryData. * * @param value * allowed object is * {@link TelemetryData } * */ public void setTelemetryData(TelemetryData value) { this.telemetryData = value; } /** * Obtient la valeur de la propriété description. * * @return * possible object is * {@link Description } * */ public Description getDescription() { return description; } /** * Définit la valeur de la propriété description. * * @param value * allowed object is * {@link Description } * */ public void setDescription(Description value) { this.description = value; } }