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

energyml.prodml2_0.FiberFacilityPipeline Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
//
// 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 java.util.ArrayList;
import java.util.List;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
import jakarta.xml.bind.annotation.XmlType;


/**
 * If facility mapping is to a pipeline, this element shows what optical path distances map to pipeline lengths.
 * 
 * 

Java class for FiberFacilityPipeline complex type. * *

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

 * <complexType name="FiberFacilityPipeline">
 *   <complexContent>
 *     <extension base="{http://www.energistics.org/energyml/data/prodmlv2}AbstractFiberFacility">
 *       <sequence>
 *         <element name="ContextFacility" type="energyml.prodml2_0.FacilityIdentifierStruct" minOccurs="0"/>
 *         <element name="DatumPortReference" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Installation" type="energyml.prodml2_0.FacilityIdentifierStruct" minOccurs="0"/>
 *         <element name="Kind" type="energyml.common2_1.String64" maxOccurs="unbounded" minOccurs="0"/>
 *         <element name="Name" type="energyml.prodml2_0.NameStruct"/>
 *       </sequence>
 *     </extension>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "FiberFacilityPipeline", propOrder = { "contextFacility", "datumPortReference", "installation", "kind", "name" }) public class FiberFacilityPipeline extends AbstractFiberFacility { @XmlElement(name = "ContextFacility") protected FacilityIdentifierStruct contextFacility; @XmlElement(name = "DatumPortReference") protected List datumPortReference; @XmlElement(name = "Installation") protected FacilityIdentifierStruct installation; @XmlElement(name = "Kind") protected List kind; @XmlElement(name = "Name", required = true) protected NameStruct name; /** * Gets the value of the contextFacility property. * * @return * possible object is * {@link FacilityIdentifierStruct } * */ public FacilityIdentifierStruct getContextFacility() { return contextFacility; } /** * Sets the value of the contextFacility property. * * @param value * allowed object is * {@link FacilityIdentifierStruct } * */ public void setContextFacility(FacilityIdentifierStruct value) { this.contextFacility = value; } /** * Gets the value of the datumPortReference property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the datumPortReference property. * *

* For example, to add a new item, do as follows: *

     *    getDatumPortReference().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getDatumPortReference() { if (datumPortReference == null) { datumPortReference = new ArrayList(); } return this.datumPortReference; } /** * Gets the value of the installation property. * * @return * possible object is * {@link FacilityIdentifierStruct } * */ public FacilityIdentifierStruct getInstallation() { return installation; } /** * Sets the value of the installation property. * * @param value * allowed object is * {@link FacilityIdentifierStruct } * */ public void setInstallation(FacilityIdentifierStruct value) { this.installation = value; } /** * Gets the value of the kind property. * *

* This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the Jakarta XML Binding object. * This is why there is not a set method for the kind property. * *

* For example, to add a new item, do as follows: *

     *    getKind().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link String } * * */ public List getKind() { if (kind == null) { kind = new ArrayList(); } return this.kind; } /** * Gets the value of the name property. * * @return * possible object is * {@link NameStruct } * */ public NameStruct getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link NameStruct } * */ public void setName(NameStruct value) { this.name = value; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy