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

net.datastream.schemas.mp_entities.assethierarchy_002.AssetChildHierarchy Maven / Gradle / Ivy

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

package net.datastream.schemas.mp_entities.assethierarchy_002;

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.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlType;
import net.datastream.schemas.mp_entities.positionhierarchy_002.ChildPosition;
import net.datastream.schemas.mp_fields.DEPARTMENTID_Type;
import net.datastream.schemas.mp_fields.EQUIPMENTID_Type;
import net.datastream.schemas.mp_fields.TYPE_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}ASSETID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}TYPE"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}SEQUENCENUMBER" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}DEPARTMENTID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}LOANEDTODEPARTMENTID" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_entities/AssetHierarchy_002}ChildAsset" maxOccurs="unbounded" minOccurs="0"/>
 *         <element ref="{http://schemas.datastream.net/MP_entities/PositionHierarchy_002}ChildPosition" maxOccurs="unbounded" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="structure_sort_option" type="{http://schemas.datastream.net/MP_fields}CODE1_Type" default="S" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "assetid", "type", "sequencenumber", "departmentid", "loanedtodepartmentid", "childAsset", "childPosition" }) @XmlRootElement(name = "AssetChildHierarchy") public class AssetChildHierarchy { @XmlElement(name = "ASSETID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected EQUIPMENTID_Type assetid; @XmlElement(name = "TYPE", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected TYPE_Type type; @XmlElement(name = "SEQUENCENUMBER", namespace = "http://schemas.datastream.net/MP_fields") protected Long sequencenumber; @XmlElement(name = "DEPARTMENTID", namespace = "http://schemas.datastream.net/MP_fields") protected DEPARTMENTID_Type departmentid; @XmlElement(name = "LOANEDTODEPARTMENTID", namespace = "http://schemas.datastream.net/MP_fields") protected DEPARTMENTID_Type loanedtodepartmentid; @XmlElement(name = "ChildAsset") protected List childAsset; @XmlElement(name = "ChildPosition", namespace = "http://schemas.datastream.net/MP_entities/PositionHierarchy_002") protected List childPosition; @XmlAttribute(name = "structure_sort_option") protected String structure_Sort_Option; /** * Obtient la valeur de la propriété assetid. * * @return * possible object is * {@link EQUIPMENTID_Type } * */ public EQUIPMENTID_Type getASSETID() { return assetid; } /** * Définit la valeur de la propriété assetid. * * @param value * allowed object is * {@link EQUIPMENTID_Type } * */ public void setASSETID(EQUIPMENTID_Type value) { this.assetid = value; } /** * Obtient la valeur de la propriété type. * * @return * possible object is * {@link TYPE_Type } * */ public TYPE_Type getTYPE() { return type; } /** * Définit la valeur de la propriété type. * * @param value * allowed object is * {@link TYPE_Type } * */ public void setTYPE(TYPE_Type value) { this.type = value; } /** * Obtient la valeur de la propriété sequencenumber. * * @return * possible object is * {@link Long } * */ public Long getSEQUENCENUMBER() { return sequencenumber; } /** * Définit la valeur de la propriété sequencenumber. * * @param value * allowed object is * {@link Long } * */ public void setSEQUENCENUMBER(Long value) { this.sequencenumber = value; } /** * Obtient la valeur de la propriété departmentid. * * @return * possible object is * {@link DEPARTMENTID_Type } * */ public DEPARTMENTID_Type getDEPARTMENTID() { return departmentid; } /** * Définit la valeur de la propriété departmentid. * * @param value * allowed object is * {@link DEPARTMENTID_Type } * */ public void setDEPARTMENTID(DEPARTMENTID_Type value) { this.departmentid = value; } /** * Obtient la valeur de la propriété loanedtodepartmentid. * * @return * possible object is * {@link DEPARTMENTID_Type } * */ public DEPARTMENTID_Type getLOANEDTODEPARTMENTID() { return loanedtodepartmentid; } /** * Définit la valeur de la propriété loanedtodepartmentid. * * @param value * allowed object is * {@link DEPARTMENTID_Type } * */ public void setLOANEDTODEPARTMENTID(DEPARTMENTID_Type value) { this.loanedtodepartmentid = value; } /** * Gets the value of the childAsset 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 childAsset property. * *

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

     *    getChildAsset().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ChildAsset } * * */ public List getChildAsset() { if (childAsset == null) { childAsset = new ArrayList(); } return this.childAsset; } /** * Gets the value of the childPosition 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 childPosition property. * *

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

     *    getChildPosition().add(newItem);
     * 
* * *

* Objects of the following type(s) are allowed in the list * {@link ChildPosition } * * */ public List getChildPosition() { if (childPosition == null) { childPosition = new ArrayList(); } return this.childPosition; } /** * Obtient la valeur de la propriété structure_Sort_Option. * * @return * possible object is * {@link String } * */ public String getStructure_Sort_Option() { if (structure_Sort_Option == null) { return "S"; } else { return structure_Sort_Option; } } /** * Définit la valeur de la propriété structure_Sort_Option. * * @param value * allowed object is * {@link String } * */ public void setStructure_Sort_Option(String value) { this.structure_Sort_Option = value; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy