net.datastream.schemas.mp_fields.LAYOUTMETA Maven / Gradle / Ivy
Show all versions of eam-wshub-proxyclient Show documentation
package net.datastream.schemas.mp_fields;
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;
/**
* 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 name="LAYOUTFUNCNAME" type="{http://schemas.datastream.net/MP_fields}CODE40_Type"/>
* <element name="LABELFUNCNAME" type="{http://schemas.datastream.net/MP_fields}CODE30_Type"/>
* <element name="TOUSERGROUPS">
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="USERGROUP" type="{http://schemas.datastream.net/MP_fields}CODE12_Type" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
* </element>
* <element ref="{http://schemas.datastream.net/MP_fields}PAGEFIELDS" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PAGEBLOCKS" minOccurs="0"/>
* <element ref="{http://schemas.datastream.net/MP_fields}PAGELABELS" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"layoutfuncname",
"labelfuncname",
"tousergroups",
"pagefields",
"pageblocks",
"pagelabels"
})
@XmlRootElement(name = "LAYOUTMETA")
public class LAYOUTMETA {
@XmlElement(name = "LAYOUTFUNCNAME", required = true)
protected String layoutfuncname;
@XmlElement(name = "LABELFUNCNAME", required = true)
protected String labelfuncname;
@XmlElement(name = "TOUSERGROUPS", required = true)
protected LAYOUTMETA.TOUSERGROUPS tousergroups;
@XmlElement(name = "PAGEFIELDS")
protected PAGEFIELDS pagefields;
@XmlElement(name = "PAGEBLOCKS")
protected PAGEBLOCKS pageblocks;
@XmlElement(name = "PAGELABELS")
protected PAGELABELS pagelabels;
/**
* Gets the value of the layoutfuncname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLAYOUTFUNCNAME() {
return layoutfuncname;
}
/**
* Sets the value of the layoutfuncname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLAYOUTFUNCNAME(String value) {
this.layoutfuncname = value;
}
/**
* Gets the value of the labelfuncname property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLABELFUNCNAME() {
return labelfuncname;
}
/**
* Sets the value of the labelfuncname property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLABELFUNCNAME(String value) {
this.labelfuncname = value;
}
/**
* Gets the value of the tousergroups property.
*
* @return
* possible object is
* {@link LAYOUTMETA.TOUSERGROUPS }
*
*/
public LAYOUTMETA.TOUSERGROUPS getTOUSERGROUPS() {
return tousergroups;
}
/**
* Sets the value of the tousergroups property.
*
* @param value
* allowed object is
* {@link LAYOUTMETA.TOUSERGROUPS }
*
*/
public void setTOUSERGROUPS(LAYOUTMETA.TOUSERGROUPS value) {
this.tousergroups = value;
}
/**
* Gets the value of the pagefields property.
*
* @return
* possible object is
* {@link PAGEFIELDS }
*
*/
public PAGEFIELDS getPAGEFIELDS() {
return pagefields;
}
/**
* Sets the value of the pagefields property.
*
* @param value
* allowed object is
* {@link PAGEFIELDS }
*
*/
public void setPAGEFIELDS(PAGEFIELDS value) {
this.pagefields = value;
}
/**
* Gets the value of the pageblocks property.
*
* @return
* possible object is
* {@link PAGEBLOCKS }
*
*/
public PAGEBLOCKS getPAGEBLOCKS() {
return pageblocks;
}
/**
* Sets the value of the pageblocks property.
*
* @param value
* allowed object is
* {@link PAGEBLOCKS }
*
*/
public void setPAGEBLOCKS(PAGEBLOCKS value) {
this.pageblocks = value;
}
/**
* Gets the value of the pagelabels property.
*
* @return
* possible object is
* {@link PAGELABELS }
*
*/
public PAGELABELS getPAGELABELS() {
return pagelabels;
}
/**
* Sets the value of the pagelabels property.
*
* @param value
* allowed object is
* {@link PAGELABELS }
*
*/
public void setPAGELABELS(PAGELABELS value) {
this.pagelabels = value;
}
/**
* 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 name="USERGROUP" type="{http://schemas.datastream.net/MP_fields}CODE12_Type" maxOccurs="unbounded"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"usergroup"
})
public static class TOUSERGROUPS {
@XmlElement(name = "USERGROUP", required = true)
protected List usergroup;
/**
* Gets the value of the usergroup 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 usergroup property.
*
*
* For example, to add a new item, do as follows:
*
* getUSERGROUP().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link String }
*
*
*/
public List getUSERGROUP() {
if (usergroup == null) {
usergroup = new ArrayList();
}
return this.usergroup;
}
}
}