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

com.scene7.ipsapi.MetadataCondition Maven / Gradle / Ivy

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.11 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2017.12.04 at 11:32:00 AM PST 
//


package com.scene7.ipsapi;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.datatype.XMLGregorianCalendar;


/**
 * 

Java class for MetadataCondition complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="MetadataCondition">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="fieldHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="op" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="caseSensitive" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="values" type="{http://www.scene7.com/IpsApi/xsd/2017-10-29-beta}StringArray" minOccurs="0"/>
 *         <element name="boolVal" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="longVal" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="minLong" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="maxLong" type="{http://www.w3.org/2001/XMLSchema}long" minOccurs="0"/>
 *         <element name="doubleVal" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="minDouble" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="maxDouble" type="{http://www.w3.org/2001/XMLSchema}double" minOccurs="0"/>
 *         <element name="dateVal" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="minDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *         <element name="maxDate" type="{http://www.w3.org/2001/XMLSchema}dateTime" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataCondition", propOrder = { "fieldHandle", "op", "caseSensitive", "value", "values", "boolVal", "longVal", "minLong", "maxLong", "doubleVal", "minDouble", "maxDouble", "dateVal", "minDate", "maxDate" }) public class MetadataCondition { @XmlElement(required = true) protected String fieldHandle; @XmlElement(required = true) protected String op; protected Boolean caseSensitive; protected String value; protected StringArray values; protected Boolean boolVal; protected Long longVal; protected Long minLong; protected Long maxLong; protected Double doubleVal; protected Double minDouble; protected Double maxDouble; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar dateVal; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar minDate; @XmlSchemaType(name = "dateTime") protected XMLGregorianCalendar maxDate; /** * Gets the value of the fieldHandle property. * * @return * possible object is * {@link String } * */ public String getFieldHandle() { return fieldHandle; } /** * Sets the value of the fieldHandle property. * * @param value * allowed object is * {@link String } * */ public void setFieldHandle(String value) { this.fieldHandle = value; } /** * Gets the value of the op property. * * @return * possible object is * {@link String } * */ public String getOp() { return op; } /** * Sets the value of the op property. * * @param value * allowed object is * {@link String } * */ public void setOp(String value) { this.op = value; } /** * Gets the value of the caseSensitive property. * * @return * possible object is * {@link Boolean } * */ public Boolean isCaseSensitive() { return caseSensitive; } /** * Sets the value of the caseSensitive property. * * @param value * allowed object is * {@link Boolean } * */ public void setCaseSensitive(Boolean value) { this.caseSensitive = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link String } * */ public String getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link String } * */ public void setValue(String value) { this.value = value; } /** * Gets the value of the values property. * * @return * possible object is * {@link StringArray } * */ public StringArray getValues() { return values; } /** * Sets the value of the values property. * * @param value * allowed object is * {@link StringArray } * */ public void setValues(StringArray value) { this.values = value; } /** * Gets the value of the boolVal property. * * @return * possible object is * {@link Boolean } * */ public Boolean isBoolVal() { return boolVal; } /** * Sets the value of the boolVal property. * * @param value * allowed object is * {@link Boolean } * */ public void setBoolVal(Boolean value) { this.boolVal = value; } /** * Gets the value of the longVal property. * * @return * possible object is * {@link Long } * */ public Long getLongVal() { return longVal; } /** * Sets the value of the longVal property. * * @param value * allowed object is * {@link Long } * */ public void setLongVal(Long value) { this.longVal = value; } /** * Gets the value of the minLong property. * * @return * possible object is * {@link Long } * */ public Long getMinLong() { return minLong; } /** * Sets the value of the minLong property. * * @param value * allowed object is * {@link Long } * */ public void setMinLong(Long value) { this.minLong = value; } /** * Gets the value of the maxLong property. * * @return * possible object is * {@link Long } * */ public Long getMaxLong() { return maxLong; } /** * Sets the value of the maxLong property. * * @param value * allowed object is * {@link Long } * */ public void setMaxLong(Long value) { this.maxLong = value; } /** * Gets the value of the doubleVal property. * * @return * possible object is * {@link Double } * */ public Double getDoubleVal() { return doubleVal; } /** * Sets the value of the doubleVal property. * * @param value * allowed object is * {@link Double } * */ public void setDoubleVal(Double value) { this.doubleVal = value; } /** * Gets the value of the minDouble property. * * @return * possible object is * {@link Double } * */ public Double getMinDouble() { return minDouble; } /** * Sets the value of the minDouble property. * * @param value * allowed object is * {@link Double } * */ public void setMinDouble(Double value) { this.minDouble = value; } /** * Gets the value of the maxDouble property. * * @return * possible object is * {@link Double } * */ public Double getMaxDouble() { return maxDouble; } /** * Sets the value of the maxDouble property. * * @param value * allowed object is * {@link Double } * */ public void setMaxDouble(Double value) { this.maxDouble = value; } /** * Gets the value of the dateVal property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getDateVal() { return dateVal; } /** * Sets the value of the dateVal property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setDateVal(XMLGregorianCalendar value) { this.dateVal = value; } /** * Gets the value of the minDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMinDate() { return minDate; } /** * Sets the value of the minDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMinDate(XMLGregorianCalendar value) { this.minDate = value; } /** * Gets the value of the maxDate property. * * @return * possible object is * {@link XMLGregorianCalendar } * */ public XMLGregorianCalendar getMaxDate() { return maxDate; } /** * Sets the value of the maxDate property. * * @param value * allowed object is * {@link XMLGregorianCalendar } * */ public void setMaxDate(XMLGregorianCalendar value) { this.maxDate = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy