gov.nasa.arc.pds.xml.generated.InstrumentHost Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds4-jparser Show documentation
Show all versions of pds4-jparser Show documentation
This is the parser library for the PDS4 planetary data standard.
//
// This file was generated by the Eclipse Implementation of JAXB, v2.3.9
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.09.27 at 05:20:24 AM GMT
//
package gov.nasa.arc.pds.xml.generated;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* The Instrument Host class provides a description
* of the physical object upon which an instrument is
* mounted.
*
* Java class for Instrument_Host complex type
.
*
* The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Instrument_Host">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="name" type="{http://pds.nasa.gov/pds4/pds/v1}name" minOccurs="0"/>
* <element name="instrument_host_version_id" type="{http://pds.nasa.gov/pds4/pds/v1}instrument_host_version_id" minOccurs="0"/>
* <element name="version_id" type="{http://pds.nasa.gov/pds4/pds/v1}version_id" minOccurs="0"/>
* <element name="type" type="{http://pds.nasa.gov/pds4/pds/v1}type"/>
* <element name="naif_host_id" type="{http://pds.nasa.gov/pds4/pds/v1}naif_host_id" minOccurs="0"/>
* <element name="serial_number" type="{http://pds.nasa.gov/pds4/pds/v1}serial_number" minOccurs="0"/>
* <element name="description" type="{http://pds.nasa.gov/pds4/pds/v1}description"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Instrument_Host", propOrder = {
"name",
"instrumentHostVersionId",
"versionId",
"type",
"naifHostId",
"serialNumber",
"description"
})
public class InstrumentHost {
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String name;
@XmlElement(name = "instrument_host_version_id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String instrumentHostVersionId;
@XmlElement(name = "version_id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String versionId;
@XmlElement(required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String type;
@XmlElement(name = "naif_host_id")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String naifHostId;
@XmlElement(name = "serial_number")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "token")
protected String serialNumber;
@XmlElement(required = true)
protected String description;
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the instrumentHostVersionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInstrumentHostVersionId() {
return instrumentHostVersionId;
}
/**
* Sets the value of the instrumentHostVersionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInstrumentHostVersionId(String value) {
this.instrumentHostVersionId = value;
}
/**
* Gets the value of the versionId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getVersionId() {
return versionId;
}
/**
* Sets the value of the versionId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setVersionId(String value) {
this.versionId = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the naifHostId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNaifHostId() {
return naifHostId;
}
/**
* Sets the value of the naifHostId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNaifHostId(String value) {
this.naifHostId = value;
}
/**
* Gets the value of the serialNumber property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSerialNumber() {
return serialNumber;
}
/**
* Sets the value of the serialNumber property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSerialNumber(String value) {
this.serialNumber = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
}