net.datastream.schemas.mp_fields.LOVSETTINGS 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_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 name="LOV_TYPE" type="{http://schemas.datastream.net/MP_fields}CODE1_Type"/>
* <element name="LOV_VALIDATE" type="{http://schemas.datastream.net/MP_fields}FLAG_Type"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"lov_TYPE",
"lov_VALIDATE"
})
@XmlRootElement(name = "LOVSETTINGS")
public class LOVSETTINGS {
@XmlElement(name = "LOV_TYPE", required = true)
protected String lov_TYPE;
@XmlElement(name = "LOV_VALIDATE", required = true)
protected String lov_VALIDATE;
/**
* Gets the value of the lov_TYPE property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLOV_TYPE() {
return lov_TYPE;
}
/**
* Sets the value of the lov_TYPE property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLOV_TYPE(String value) {
this.lov_TYPE = value;
}
/**
* Gets the value of the lov_VALIDATE property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLOV_VALIDATE() {
return lov_VALIDATE;
}
/**
* Sets the value of the lov_VALIDATE property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLOV_VALIDATE(String value) {
this.lov_VALIDATE = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy