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

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


/**
 * When it's important to know the physical address(s) on the spacecraft that this parameter may be collected from, use this.  
 * 
 * 

Java class for PhysicalAddressType complex type. * *

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

 * <complexType name="PhysicalAddressType">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="SubAddress" type="{http://www.omg.org/space/xtce}PhysicalAddressType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="sourceName" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="sourceAddress" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "PhysicalAddressType", propOrder = { "subAddress" }) @XmlSeeAlso({ org.omg.space.xtce.ParameterPropertiesType.PhysicalAddressSet.PhysicalAddress.class }) public class PhysicalAddressType { @XmlElement(name = "SubAddress") protected PhysicalAddressType subAddress; @XmlAttribute(name = "sourceName") protected String sourceName; @XmlAttribute(name = "sourceAddress") protected String sourceAddress; /** * Gets the value of the subAddress property. * * @return * possible object is * {@link PhysicalAddressType } * */ public PhysicalAddressType getSubAddress() { return subAddress; } /** * Sets the value of the subAddress property. * * @param value * allowed object is * {@link PhysicalAddressType } * */ public void setSubAddress(PhysicalAddressType value) { this.subAddress = value; } /** * Gets the value of the sourceName property. * * @return * possible object is * {@link String } * */ public String getSourceName() { return sourceName; } /** * Sets the value of the sourceName property. * * @param value * allowed object is * {@link String } * */ public void setSourceName(String value) { this.sourceName = value; } /** * Gets the value of the sourceAddress property. * * @return * possible object is * {@link String } * */ public String getSourceAddress() { return sourceAddress; } /** * Sets the value of the sourceAddress property. * * @param value * allowed object is * {@link String } * */ public void setSourceAddress(String value) { this.sourceAddress = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy