All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.omg.space.xtce.SpaceSystemType Maven / Gradle / Ivy

Go to download

This project contains software to support the Object Management Group (OMG) Space Domain Task Force (SDTF) maintained XML Telemetry and Command Exchange (XTCE) specification.

There is a newer version: 1.1.6
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 
// See https://javaee.github.io/jaxb-v2/ 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2019.03.16 at 05:52:46 PM MST 
//


package org.omg.space.xtce;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
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;


/**
 * SpaceSystem is a collection of SpaceSystem(s) including space assets, ground assets, multi-satellite systems and sub-systems.  A SpaceSystem is the root element for the set of data necessary to monitor and command an arbitrary space device - this includes the binary decomposition the data streams going into and out of a device.
 * 
 * 

Java class for SpaceSystemType complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="SpaceSystemType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}NameDescriptionType">
 *       <sequence>
 *         <element name="Header" type="{http://www.omg.org/space/xtce}HeaderType" minOccurs="0"/>
 *         <element name="TelemetryMetaData" type="{http://www.omg.org/space/xtce}TelemetryMetaDataType" minOccurs="0"/>
 *         <element name="CommandMetaData" type="{http://www.omg.org/space/xtce}CommandMetaDataType" minOccurs="0"/>
 *         <element name="ServiceSet" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Service" type="{http://www.omg.org/space/xtce}ServiceType" maxOccurs="unbounded"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element ref="{http://www.omg.org/space/xtce}SpaceSystem" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="operationalStatus" type="{http://www.w3.org/2001/XMLSchema}token" />
 *       <attribute ref="{http://www.w3.org/XML/1998/namespace}base"/>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "SpaceSystemType", propOrder = { "header", "telemetryMetaData", "commandMetaData", "serviceSet", "spaceSystem" }) public class SpaceSystemType extends NameDescriptionType { @XmlElement(name = "Header") protected HeaderType header; @XmlElement(name = "TelemetryMetaData") protected TelemetryMetaDataType telemetryMetaData; @XmlElement(name = "CommandMetaData") protected CommandMetaDataType commandMetaData; @XmlElement(name = "ServiceSet") protected SpaceSystemType.ServiceSet serviceSet; @XmlElement(name = "SpaceSystem", nillable = true) protected List spaceSystem; @XmlAttribute(name = "operationalStatus") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "token") protected String operationalStatus; @XmlAttribute(name = "base", namespace = "http://www.w3.org/XML/1998/namespace") @XmlSchemaType(name = "anyURI") protected String base; /** * Gets the value of the header property. * * @return * possible object is * {@link HeaderType } * */ public HeaderType getHeader() { return header; } /** * Sets the value of the header property. * * @param value * allowed object is * {@link HeaderType } * */ public void setHeader(HeaderType value) { this.header = value; } /** * Gets the value of the telemetryMetaData property. * * @return * possible object is * {@link TelemetryMetaDataType } * */ public TelemetryMetaDataType getTelemetryMetaData() { return telemetryMetaData; } /** * Sets the value of the telemetryMetaData property. * * @param value * allowed object is * {@link TelemetryMetaDataType } * */ public void setTelemetryMetaData(TelemetryMetaDataType value) { this.telemetryMetaData = value; } /** * Gets the value of the commandMetaData property. * * @return * possible object is * {@link CommandMetaDataType } * */ public CommandMetaDataType getCommandMetaData() { return commandMetaData; } /** * Sets the value of the commandMetaData property. * * @param value * allowed object is * {@link CommandMetaDataType } * */ public void setCommandMetaData(CommandMetaDataType value) { this.commandMetaData = value; } /** * Gets the value of the serviceSet property. * * @return * possible object is * {@link SpaceSystemType.ServiceSet } * */ public SpaceSystemType.ServiceSet getServiceSet() { return serviceSet; } /** * Sets the value of the serviceSet property. * * @param value * allowed object is * {@link SpaceSystemType.ServiceSet } * */ public void setServiceSet(SpaceSystemType.ServiceSet value) { this.serviceSet = value; } /** * Gets the value of the spaceSystem 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 spaceSystem property. * *

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

     *    getSpaceSystem().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SpaceSystemType } * * */ public List getSpaceSystem() { if (spaceSystem == null) { spaceSystem = new ArrayList(); } return this.spaceSystem; } /** * Gets the value of the operationalStatus property. * * @return * possible object is * {@link String } * */ public String getOperationalStatus() { return operationalStatus; } /** * Sets the value of the operationalStatus property. * * @param value * allowed object is * {@link String } * */ public void setOperationalStatus(String value) { this.operationalStatus = value; } /** * Gets the value of the base property. * * @return * possible object is * {@link String } * */ public String getBase() { return base; } /** * Sets the value of the base property. * * @param value * allowed object is * {@link String } * */ public void setBase(String value) { this.base = value; } /** *

Java class for anonymous complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

     * <complexType>
     *   <complexContent>
     *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       <sequence>
     *         <element name="Service" type="{http://www.omg.org/space/xtce}ServiceType" maxOccurs="unbounded"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "service" }) public static class ServiceSet { @XmlElement(name = "Service", required = true) protected List service; /** * Gets the value of the service 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 service property. * *

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

         *    getService().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ServiceType } * * */ public List getService() { if (service == null) { service = new ArrayList(); } return this.service; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy