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

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

There is a newer version: 12.1-4
Show newest version

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