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

net.datastream.schemas.mp_entities.assetequipment_001.LocationDependency Maven / Gradle / Ivy

There is a newer version: 12.1-4
Show newest version

package net.datastream.schemas.mp_entities.assetequipment_001;

import java.util.ArrayList;
import java.util.List;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_fields.ASSETPARENT_Type;
import net.datastream.schemas.mp_fields.LOCATIONPARENT_Type;
import net.datastream.schemas.mp_fields.POSITIONPARENT_Type;
import net.datastream.schemas.mp_fields.SYSTEMPARENT_Type;


/**
 * 

Classe Java pour anonymous complex type. * *

Le fragment de schéma suivant indique le contenu attendu figurant dans cette classe. * *

 * <complexType>
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element ref="{http://schemas.datastream.net/MP_fields}DEPENDENTLOCATION"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}NONDEPENDENTASSET" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}NONDEPENDENTPOSITION" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}NONDEPENDENTPRIMARYSYSTEM" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}NONDEPENDENTSYSTEM" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "dependentlocation", "nondependentasset", "nondependentposition", "nondependentprimarysystem", "nondependentsystem" }) @XmlRootElement(name = "LocationDependency") public class LocationDependency { @XmlElement(name = "DEPENDENTLOCATION", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected LOCATIONPARENT_Type dependentlocation; @XmlElement(name = "NONDEPENDENTASSET", namespace = "http://schemas.datastream.net/MP_fields") protected ASSETPARENT_Type nondependentasset; @XmlElement(name = "NONDEPENDENTPOSITION", namespace = "http://schemas.datastream.net/MP_fields") protected POSITIONPARENT_Type nondependentposition; @XmlElement(name = "NONDEPENDENTPRIMARYSYSTEM", namespace = "http://schemas.datastream.net/MP_fields") protected SYSTEMPARENT_Type nondependentprimarysystem; @XmlElement(name = "NONDEPENDENTSYSTEM", namespace = "http://schemas.datastream.net/MP_fields") protected List nondependentsystem; /** * Obtient la valeur de la propriété dependentlocation. * * @return * possible object is * {@link LOCATIONPARENT_Type } * */ public LOCATIONPARENT_Type getDEPENDENTLOCATION() { return dependentlocation; } /** * Définit la valeur de la propriété dependentlocation. * * @param value * allowed object is * {@link LOCATIONPARENT_Type } * */ public void setDEPENDENTLOCATION(LOCATIONPARENT_Type value) { this.dependentlocation = value; } /** * Obtient la valeur de la propriété nondependentasset. * * @return * possible object is * {@link ASSETPARENT_Type } * */ public ASSETPARENT_Type getNONDEPENDENTASSET() { return nondependentasset; } /** * Définit la valeur de la propriété nondependentasset. * * @param value * allowed object is * {@link ASSETPARENT_Type } * */ public void setNONDEPENDENTASSET(ASSETPARENT_Type value) { this.nondependentasset = value; } /** * Obtient la valeur de la propriété nondependentposition. * * @return * possible object is * {@link POSITIONPARENT_Type } * */ public POSITIONPARENT_Type getNONDEPENDENTPOSITION() { return nondependentposition; } /** * Définit la valeur de la propriété nondependentposition. * * @param value * allowed object is * {@link POSITIONPARENT_Type } * */ public void setNONDEPENDENTPOSITION(POSITIONPARENT_Type value) { this.nondependentposition = value; } /** * Obtient la valeur de la propriété nondependentprimarysystem. * * @return * possible object is * {@link SYSTEMPARENT_Type } * */ public SYSTEMPARENT_Type getNONDEPENDENTPRIMARYSYSTEM() { return nondependentprimarysystem; } /** * Définit la valeur de la propriété nondependentprimarysystem. * * @param value * allowed object is * {@link SYSTEMPARENT_Type } * */ public void setNONDEPENDENTPRIMARYSYSTEM(SYSTEMPARENT_Type value) { this.nondependentprimarysystem = value; } /** * Gets the value of the nondependentsystem 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 JAXB object. * This is why there is not a set method for the nondependentsystem property. * *

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

     *    getNONDEPENDENTSYSTEM().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link SYSTEMPARENT_Type } * * */ public List getNONDEPENDENTSYSTEM() { if (nondependentsystem == null) { nondependentsystem = new ArrayList(); } return this.nondependentsystem; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy