net.datastream.schemas.mp_entities.positionequipment_001.SystemDependency Maven / Gradle / Ivy
Show all versions of eam-wshub-proxyclient Show documentation
package net.datastream.schemas.mp_entities.positionequipment_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.POSITIONPARENT_Type;
import net.datastream.schemas.mp_fields.SYSTEMPARENT_Type;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element ref="{http://schemas.datastream.net/MP_fields}DEPENDENTSYSTEM"/>
* <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 = {
"dependentsystem",
"nondependentposition",
"nondependentprimarysystem",
"nondependentsystem"
})
@XmlRootElement(name = "SystemDependency")
public class SystemDependency {
@XmlElement(name = "DEPENDENTSYSTEM", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected SYSTEMPARENT_Type dependentsystem;
@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;
/**
* Gets the value of the dependentsystem property.
*
* @return
* possible object is
* {@link SYSTEMPARENT_Type }
*
*/
public SYSTEMPARENT_Type getDEPENDENTSYSTEM() {
return dependentsystem;
}
/**
* Sets the value of the dependentsystem property.
*
* @param value
* allowed object is
* {@link SYSTEMPARENT_Type }
*
*/
public void setDEPENDENTSYSTEM(SYSTEMPARENT_Type value) {
this.dependentsystem = value;
}
/**
* Gets the value of the nondependentposition property.
*
* @return
* possible object is
* {@link POSITIONPARENT_Type }
*
*/
public POSITIONPARENT_Type getNONDEPENDENTPOSITION() {
return nondependentposition;
}
/**
* Sets the value of the nondependentposition property.
*
* @param value
* allowed object is
* {@link POSITIONPARENT_Type }
*
*/
public void setNONDEPENDENTPOSITION(POSITIONPARENT_Type value) {
this.nondependentposition = value;
}
/**
* Gets the value of the nondependentprimarysystem property.
*
* @return
* possible object is
* {@link SYSTEMPARENT_Type }
*
*/
public SYSTEMPARENT_Type getNONDEPENDENTPRIMARYSYSTEM() {
return nondependentprimarysystem;
}
/**
* Sets the value of the nondependentprimarysystem property.
*
* @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;
}
}