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

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


/**
 * An entry whose name is given by the value of a ParamameterInstance.  This entry may be used to implement dwell telemetry streams.  The value of the parameter in ParameterInstance must use either the name of the Parameter or its alias.  If it's an alias name, the alias namespace is supplied as an attribute.
 * 
 * 

Java class for IndirectParameterRefEntryType complex type. * *

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

 * <complexType name="IndirectParameterRefEntryType">
 *   <complexContent>
 *     <extension base="{http://www.omg.org/space/xtce}SequenceEntryType">
 *       <sequence>
 *         <element name="ParameterInstance" type="{http://www.omg.org/space/xtce}ParameterInstanceRefType"/>
 *       </sequence>
 *       <attribute name="aliasNameSpace" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "IndirectParameterRefEntryType", propOrder = { "parameterInstance" }) public class IndirectParameterRefEntryType extends SequenceEntryType { @XmlElement(name = "ParameterInstance", required = true) protected ParameterInstanceRefType parameterInstance; @XmlAttribute(name = "aliasNameSpace") protected String aliasNameSpace; /** * Gets the value of the parameterInstance property. * * @return * possible object is * {@link ParameterInstanceRefType } * */ public ParameterInstanceRefType getParameterInstance() { return parameterInstance; } /** * Sets the value of the parameterInstance property. * * @param value * allowed object is * {@link ParameterInstanceRefType } * */ public void setParameterInstance(ParameterInstanceRefType value) { this.parameterInstance = value; } /** * Gets the value of the aliasNameSpace property. * * @return * possible object is * {@link String } * */ public String getAliasNameSpace() { return aliasNameSpace; } /** * Sets the value of the aliasNameSpace property. * * @param value * allowed object is * {@link String } * */ public void setAliasNameSpace(String value) { this.aliasNameSpace = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy