energyml.prodml2_0.FiberTerminator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of energyml-prodml20 Show documentation
Show all versions of energyml-prodml20 Show documentation
API to interract with energyml (resqml, witml, prodml)
//
// This file was generated by the Eclipse Implementation of JAXB, v3.0.0
// See https://eclipse-ee4j.github.io/jaxb-ri
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2022.10.13 at 08:02:05 PM UTC
//
package energyml.prodml2_0;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlType;
/**
* The terminator of the optical path. This may be a component (in the case of a single ended fiber installation), or it may be a connection back into the instrument box in the case of a double ended fiber installation.
*
* Java class for FiberTerminator complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="FiberTerminator">
* <complexContent>
* <extension base="{http://www.energistics.org/energyml/data/prodmlv2}FiberCommon">
* <sequence>
* <element name="TerminationType" type="energyml.prodml2_0.TerminationType"/>
* </sequence>
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "FiberTerminator", propOrder = {
"terminationType"
})
public class FiberTerminator
extends FiberCommon
{
@XmlElement(name = "TerminationType", required = true)
@XmlSchemaType(name = "string")
protected TerminationType terminationType;
/**
* Gets the value of the terminationType property.
*
* @return
* possible object is
* {@link TerminationType }
*
*/
public TerminationType getTerminationType() {
return terminationType;
}
/**
* Sets the value of the terminationType property.
*
* @param value
* allowed object is
* {@link TerminationType }
*
*/
public void setTerminationType(TerminationType value) {
this.terminationType = value;
}
}