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

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


/**
 * A reference to a Service
 * 
 * 

Java class for ServiceRefType complex type. * *

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

 * <complexType name="ServiceRefType">
 *   <simpleContent>
 *     <extension base="<http://www.omg.org/space/xtce>NameReferenceType">
 *       <attribute name="serviceRef" use="required" type="{http://www.omg.org/space/xtce}NameReferenceType" />
 *     </extension>
 *   </simpleContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ServiceRefType", propOrder = { "value" }) public class ServiceRefType { @XmlValue protected String value; @XmlAttribute(name = "serviceRef", required = true) protected String serviceRef; /** * Used when referencing a directory style "NameType". All characters are legal. All name references use a Unix ‘like’ name referencing mechanism across the SpaceSystem Tree (e.g., SimpleSat/Bus/EPDS/BatteryOne/Voltage) where the '/', ‘..’ and ‘.’ are used to navigate through the hierarchy. The use of an unqualified name will search for an item in the current SpaceSystem first, then if none is found, in progressively higher SpaceSystems. A SpaceSystem is a name space (i.e., a named type declared in MetaCommandData is also declared in TelemetryMetaData - and vice versa). * * @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; } /** * Gets the value of the serviceRef property. * * @return * possible object is * {@link String } * */ public String getServiceRef() { return serviceRef; } /** * Sets the value of the serviceRef property. * * @param value * allowed object is * {@link String } * */ public void setServiceRef(String value) { this.serviceRef = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy