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

net.datastream.schemas.mp_entities.location_001.LocationParentHierarchy Maven / Gradle / Ivy


package net.datastream.schemas.mp_entities.location_001;

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.LOCATIONID_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}LOCATIONID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}TYPE"/>
 *         <element ref="{http://schemas.datastream.net/MP_entities/Location_001}ParentLocation" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "locationid", "type", "parentLocation" }) @XmlRootElement(name = "LocationParentHierarchy") public class LocationParentHierarchy { @XmlElement(name = "LOCATIONID", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected LOCATIONID_Type locationid; @XmlElement(name = "TYPE", namespace = "http://schemas.datastream.net/MP_fields", required = true) protected TYPE_Type type; @XmlElement(name = "ParentLocation") protected ParentLocation parentLocation; /** * Obtient la valeur de la propriété locationid. * * @return * possible object is * {@link LOCATIONID_Type } * */ public LOCATIONID_Type getLOCATIONID() { return locationid; } /** * Définit la valeur de la propriété locationid. * * @param value * allowed object is * {@link LOCATIONID_Type } * */ public void setLOCATIONID(LOCATIONID_Type value) { this.locationid = 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é parentLocation. * * @return * possible object is * {@link ParentLocation } * */ public ParentLocation getParentLocation() { return parentLocation; } /** * Définit la valeur de la propriété parentLocation. * * @param value * allowed object is * {@link ParentLocation } * */ public void setParentLocation(ParentLocation value) { this.parentLocation = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy