com.scene7.ipsapi.MetadataUpdate 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 MetadataUpdate complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MetadataUpdate">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fieldHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="value" type="{http://www.w3.org/2001/XMLSchema}string" 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="doubleVal" 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="addTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
* <element name="setTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
* <element name="deleteTagValueArray" type="{http://www.scene7.com/IpsApi/xsd/2024-05-30-beta}StringArray" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MetadataUpdate", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"fieldHandle",
"value",
"boolVal",
"longVal",
"doubleVal",
"dateVal",
"addTagValueArray",
"setTagValueArray",
"deleteTagValueArray"
})
public class MetadataUpdate {
@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")
protected String value;
@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 Double doubleVal;
@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")
protected StringArray addTagValueArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected StringArray setTagValueArray;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected StringArray deleteTagValueArray;
/**
* 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 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 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 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 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 addTagValueArray property.
*
* @return
* possible object is
* {@link StringArray }
*
*/
public StringArray getAddTagValueArray() {
return addTagValueArray;
}
/**
* Sets the value of the addTagValueArray property.
*
* @param value
* allowed object is
* {@link StringArray }
*
*/
public void setAddTagValueArray(StringArray value) {
this.addTagValueArray = value;
}
/**
* Gets the value of the setTagValueArray property.
*
* @return
* possible object is
* {@link StringArray }
*
*/
public StringArray getSetTagValueArray() {
return setTagValueArray;
}
/**
* Sets the value of the setTagValueArray property.
*
* @param value
* allowed object is
* {@link StringArray }
*
*/
public void setSetTagValueArray(StringArray value) {
this.setTagValueArray = value;
}
/**
* Gets the value of the deleteTagValueArray property.
*
* @return
* possible object is
* {@link StringArray }
*
*/
public StringArray getDeleteTagValueArray() {
return deleteTagValueArray;
}
/**
* Sets the value of the deleteTagValueArray property.
*
* @param value
* allowed object is
* {@link StringArray }
*
*/
public void setDeleteTagValueArray(StringArray value) {
this.deleteTagValueArray = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy