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

org.omg.space.xtce.HeaderType 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.XmlType;


/**
 * Schema for a Header record.  A header contains general information about the system or subsystem.
 * 
 * 

Java class for HeaderType complex type. * *

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

 * <complexType name="HeaderType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="AuthorSet" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Author" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="NoteSet" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="Note" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *         <element name="HistorySet" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <sequence>
 *                   <element name="History" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
 *                 </sequence>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *       <attribute name="version" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="date" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="classification" type="{http://www.w3.org/2001/XMLSchema}string" default="NotClassified" />
 *       <attribute name="classificationInstructions" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="validationStatus" use="required">
 *         <simpleType>
 *           <restriction base="{http://www.w3.org/2001/XMLSchema}string">
 *             <enumeration value="Unknown"/>
 *             <enumeration value="Working"/>
 *             <enumeration value="Draft"/>
 *             <enumeration value="Test"/>
 *             <enumeration value="Validated"/>
 *             <enumeration value="Released"/>
 *             <enumeration value="Withdrawn"/>
 *           </restriction>
 *         </simpleType>
 *       </attribute>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "HeaderType", propOrder = { "authorSet", "noteSet", "historySet" }) public class HeaderType { @XmlElement(name = "AuthorSet") protected HeaderType.AuthorSet authorSet; @XmlElement(name = "NoteSet") protected HeaderType.NoteSet noteSet; @XmlElement(name = "HistorySet") protected HeaderType.HistorySet historySet; @XmlAttribute(name = "version") protected String version; @XmlAttribute(name = "date") protected String date; @XmlAttribute(name = "classification") protected String classification; @XmlAttribute(name = "classificationInstructions") protected String classificationInstructions; @XmlAttribute(name = "validationStatus", required = true) protected String validationStatus; /** * Gets the value of the authorSet property. * * @return * possible object is * {@link HeaderType.AuthorSet } * */ public HeaderType.AuthorSet getAuthorSet() { return authorSet; } /** * Sets the value of the authorSet property. * * @param value * allowed object is * {@link HeaderType.AuthorSet } * */ public void setAuthorSet(HeaderType.AuthorSet value) { this.authorSet = value; } /** * Gets the value of the noteSet property. * * @return * possible object is * {@link HeaderType.NoteSet } * */ public HeaderType.NoteSet getNoteSet() { return noteSet; } /** * Sets the value of the noteSet property. * * @param value * allowed object is * {@link HeaderType.NoteSet } * */ public void setNoteSet(HeaderType.NoteSet value) { this.noteSet = value; } /** * Gets the value of the historySet property. * * @return * possible object is * {@link HeaderType.HistorySet } * */ public HeaderType.HistorySet getHistorySet() { return historySet; } /** * Sets the value of the historySet property. * * @param value * allowed object is * {@link HeaderType.HistorySet } * */ public void setHistorySet(HeaderType.HistorySet value) { this.historySet = value; } /** * Gets the value of the version property. * * @return * possible object is * {@link String } * */ public String getVersion() { return version; } /** * Sets the value of the version property. * * @param value * allowed object is * {@link String } * */ public void setVersion(String value) { this.version = value; } /** * Gets the value of the date property. * * @return * possible object is * {@link String } * */ public String getDate() { return date; } /** * Sets the value of the date property. * * @param value * allowed object is * {@link String } * */ public void setDate(String value) { this.date = value; } /** * Gets the value of the classification property. * * @return * possible object is * {@link String } * */ public String getClassification() { if (classification == null) { return "NotClassified"; } else { return classification; } } /** * Sets the value of the classification property. * * @param value * allowed object is * {@link String } * */ public void setClassification(String value) { this.classification = value; } /** * Gets the value of the classificationInstructions property. * * @return * possible object is * {@link String } * */ public String getClassificationInstructions() { return classificationInstructions; } /** * Sets the value of the classificationInstructions property. * * @param value * allowed object is * {@link String } * */ public void setClassificationInstructions(String value) { this.classificationInstructions = value; } /** * Gets the value of the validationStatus property. * * @return * possible object is * {@link String } * */ public String getValidationStatus() { return validationStatus; } /** * Sets the value of the validationStatus property. * * @param value * allowed object is * {@link String } * */ public void setValidationStatus(String value) { this.validationStatus = 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="Author" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "author" }) public static class AuthorSet { @XmlElement(name = "Author") protected List author; /** * Gets the value of the author 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 author property. * *

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

         *    getAuthor().add(newItem);
         * 
* * *

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

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="History" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "history" }) public static class HistorySet { @XmlElement(name = "History") protected List history; /** * Gets the value of the history 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 history property. * *

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

         *    getHistory().add(newItem);
         * 
* * *

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

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="Note" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
     *       </sequence>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "note" }) public static class NoteSet { @XmlElement(name = "Note") protected List note; /** * Gets the value of the note 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 note property. * *

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

         *    getNote().add(newItem);
         * 
* * *

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





© 2015 - 2024 Weber Informatics LLC | Privacy Policy