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

org.omg.space.xtce.InputAlgorithmType 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.XmlElements;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;


/**
 * A set of labeled inputs is added to the SimpleAlgorithmType
 * 
 * 

Java class for InputAlgorithmType complex type. * *

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

 * <complexType name="InputAlgorithmType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}SimpleAlgorithmType">
 *       <sequence>
 *         <element name="InputSet" minOccurs="0">
 *           <complexType>
 *             <complexContent>
 *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 <choice maxOccurs="unbounded">
 *                   <element name="ParameterInstanceRef">
 *                     <complexType>
 *                       <complexContent>
 *                         <extension base="{http://www.omg.org/space/xtce}ParameterInstanceRefType">
 *                           <attribute name="inputName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         </extension>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                   <element name="Constant" minOccurs="0">
 *                     <complexType>
 *                       <complexContent>
 *                         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                           <attribute name="constantName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                           <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *                         </restriction>
 *                       </complexContent>
 *                     </complexType>
 *                   </element>
 *                 </choice>
 *               </restriction>
 *             </complexContent>
 *           </complexType>
 *         </element>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InputAlgorithmType", propOrder = { "inputSet" }) @XmlSeeAlso({ InputOutputAlgorithmType.class }) public class InputAlgorithmType extends SimpleAlgorithmType { @XmlElement(name = "InputSet") protected InputAlgorithmType.InputSet inputSet; /** * Gets the value of the inputSet property. * * @return * possible object is * {@link InputAlgorithmType.InputSet } * */ public InputAlgorithmType.InputSet getInputSet() { return inputSet; } /** * Sets the value of the inputSet property. * * @param value * allowed object is * {@link InputAlgorithmType.InputSet } * */ public void setInputSet(InputAlgorithmType.InputSet value) { this.inputSet = 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">
     *       <choice maxOccurs="unbounded">
     *         <element name="ParameterInstanceRef">
     *           <complexType>
     *             <complexContent>
     *               <extension base="{http://www.omg.org/space/xtce}ParameterInstanceRefType">
     *                 <attribute name="inputName" type="{http://www.w3.org/2001/XMLSchema}string" />
     *               </extension>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *         <element name="Constant" minOccurs="0">
     *           <complexType>
     *             <complexContent>
     *               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *                 <attribute name="constantName" type="{http://www.w3.org/2001/XMLSchema}string" />
     *                 <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
     *               </restriction>
     *             </complexContent>
     *           </complexType>
     *         </element>
     *       </choice>
     *     </restriction>
     *   </complexContent>
     * </complexType>
     * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "parameterInstanceRefOrConstant" }) public static class InputSet { @XmlElements({ @XmlElement(name = "ParameterInstanceRef", type = InputAlgorithmType.InputSet.ParameterInstanceRef.class), @XmlElement(name = "Constant", type = InputAlgorithmType.InputSet.Constant.class) }) protected List parameterInstanceRefOrConstant; /** * Gets the value of the parameterInstanceRefOrConstant 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 parameterInstanceRefOrConstant property. * *

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

         *    getParameterInstanceRefOrConstant().add(newItem);
         * 
* * *

* Objects of the following type(s) are allowed in the list * {@link InputAlgorithmType.InputSet.ParameterInstanceRef } * {@link InputAlgorithmType.InputSet.Constant } * * */ public List getParameterInstanceRefOrConstant() { if (parameterInstanceRefOrConstant == null) { parameterInstanceRefOrConstant = new ArrayList(); } return this.parameterInstanceRefOrConstant; } /** *

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">
         *       <attribute name="constantName" type="{http://www.w3.org/2001/XMLSchema}string" />
         *       <attribute name="value" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
         *     </restriction>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Constant { @XmlAttribute(name = "constantName") protected String constantName; @XmlAttribute(name = "value", required = true) protected String value; /** * Gets the value of the constantName property. * * @return * possible object is * {@link String } * */ public String getConstantName() { return constantName; } /** * Sets the value of the constantName property. * * @param value * allowed object is * {@link String } * */ public void setConstantName(String value) { this.constantName = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } } /** *

Java class for anonymous complex type. * *

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

         * <complexType>
         *   <complexContent>
         *     <extension base="{http://www.omg.org/space/xtce}ParameterInstanceRefType">
         *       <attribute name="inputName" type="{http://www.w3.org/2001/XMLSchema}string" />
         *     </extension>
         *   </complexContent>
         * </complexType>
         * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class ParameterInstanceRef extends ParameterInstanceRefType { @XmlAttribute(name = "inputName") protected String inputName; /** * Gets the value of the inputName property. * * @return * possible object is * {@link String } * */ public String getInputName() { return inputName; } /** * Sets the value of the inputName property. * * @param value * allowed object is * {@link String } * */ public void setInputName(String value) { this.inputName = value; } } } }