com.scene7.ipsapi.MetadataCondition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.06.06 at 01:39:50 PM UTC
//
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/2024-05-30-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", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"fieldHandle",
"op",
"caseSensitive",
"value",
"values",
"boolVal",
"longVal",
"minLong",
"maxLong",
"doubleVal",
"minDouble",
"maxDouble",
"dateVal",
"minDate",
"maxDate"
})
public class MetadataCondition {
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String fieldHandle;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String op;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean caseSensitive;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String value;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected StringArray values;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Boolean boolVal;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Long longVal;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Long minLong;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Long maxLong;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Double doubleVal;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Double minDouble;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected Double maxDouble;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar dateVal;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@XmlSchemaType(name = "dateTime")
protected XMLGregorianCalendar minDate;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
@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;
}
}