net.datastream.schemas.mp_entities.hiddendataspy_001.HiddenDataspy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eam-wshub-proxyclient Show documentation
Show all versions of eam-wshub-proxyclient Show documentation
JAX-WS aisws aisws generated from Infor EAM Web Services Toolkit WSDLs.
package net.datastream.schemas.mp_entities.hiddendataspy_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.USERGROUPID_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}USERGROUPID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}EWSDATASPYID"/>
* <element ref="{http://schemas.datastream.net/MP_fields}HIDDEN"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"usergroupid",
"ewsdataspyid",
"hidden"
})
@XmlRootElement(name = "HiddenDataspy")
public class HiddenDataspy {
@XmlElement(name = "USERGROUPID", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected USERGROUPID_Type usergroupid;
@XmlElement(name = "EWSDATASPYID", namespace = "http://schemas.datastream.net/MP_fields")
protected long ewsdataspyid;
@XmlElement(name = "HIDDEN", namespace = "http://schemas.datastream.net/MP_fields", required = true)
protected String hidden;
/**
* Obtient la valeur de la propriété usergroupid.
*
* @return
* possible object is
* {@link USERGROUPID_Type }
*
*/
public USERGROUPID_Type getUSERGROUPID() {
return usergroupid;
}
/**
* Définit la valeur de la propriété usergroupid.
*
* @param value
* allowed object is
* {@link USERGROUPID_Type }
*
*/
public void setUSERGROUPID(USERGROUPID_Type value) {
this.usergroupid = value;
}
/**
* Obtient la valeur de la propriété ewsdataspyid.
*
*/
public long getEWSDATASPYID() {
return ewsdataspyid;
}
/**
* Définit la valeur de la propriété ewsdataspyid.
*
*/
public void setEWSDATASPYID(long value) {
this.ewsdataspyid = value;
}
/**
* Obtient la valeur de la propriété hidden.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHIDDEN() {
return hidden;
}
/**
* Définit la valeur de la propriété hidden.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHIDDEN(String value) {
this.hidden = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy