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

net.datastream.schemas.mp_fields.GISPREFERENCEID Maven / Gradle / Ivy


package net.datastream.schemas.mp_fields;

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;


/**
 * 

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}USERGROUPID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}PROFILEID"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}GISLAYER"/>
 *         <element ref="{http://schemas.datastream.net/MP_fields}GISMAPID" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "usergroupid", "profileid", "gislayer", "gismapid" }) @XmlRootElement(name = "GISPREFERENCEID") public class GISPREFERENCEID { @XmlElement(name = "USERGROUPID", required = true) protected USERGROUPID_Type usergroupid; @XmlElement(name = "PROFILEID", required = true) protected OBJECT_Type profileid; @XmlElement(name = "GISLAYER", required = true) protected String gislayer; @XmlElement(name = "GISMAPID") protected GISMAPID_Type gismapid; /** * Gets the value of the usergroupid property. * * @return * possible object is * {@link USERGROUPID_Type } * */ public USERGROUPID_Type getUSERGROUPID() { return usergroupid; } /** * Sets the value of the usergroupid property. * * @param value * allowed object is * {@link USERGROUPID_Type } * */ public void setUSERGROUPID(USERGROUPID_Type value) { this.usergroupid = value; } /** * Gets the value of the profileid property. * * @return * possible object is * {@link OBJECT_Type } * */ public OBJECT_Type getPROFILEID() { return profileid; } /** * Sets the value of the profileid property. * * @param value * allowed object is * {@link OBJECT_Type } * */ public void setPROFILEID(OBJECT_Type value) { this.profileid = value; } /** * Gets the value of the gislayer property. * * @return * possible object is * {@link String } * */ public String getGISLAYER() { return gislayer; } /** * Sets the value of the gislayer property. * * @param value * allowed object is * {@link String } * */ public void setGISLAYER(String value) { this.gislayer = value; } /** * Gets the value of the gismapid property. * * @return * possible object is * {@link GISMAPID_Type } * */ public GISMAPID_Type getGISMAPID() { return gismapid; } /** * Sets the value of the gismapid property. * * @param value * allowed object is * {@link GISMAPID_Type } * */ public void setGISMAPID(GISMAPID_Type value) { this.gismapid = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy