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

energyml.prodml2_0.Instrument Maven / Gradle / Ivy

//
// 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.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;


/**
 * The general class of an instrument, including vendor information, in the installed system.
 * 
 * 

Java class for Instrument complex type. * *

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

 * <complexType name="Instrument">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/prodmlv2}AbstractDtsEquipment">
 *       <sequence>
 *         <element name="InstrumentVendor" type="energyml.prodml2_0.BusinessAssociate" minOccurs="0"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Instrument", propOrder = { "instrumentVendor" }) @XmlSeeAlso({ FiberOTDRInstrumentBox.class }) public class Instrument extends AbstractDtsEquipment { @XmlElement(name = "InstrumentVendor") protected BusinessAssociate instrumentVendor; /** * Gets the value of the instrumentVendor property. * * @return * possible object is * {@link BusinessAssociate } * */ public BusinessAssociate getInstrumentVendor() { return instrumentVendor; } /** * Sets the value of the instrumentVendor property. * * @param value * allowed object is * {@link BusinessAssociate } * */ public void setInstrumentVendor(BusinessAssociate value) { this.instrumentVendor = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy