com.scene7.ipsapi.MetadataField 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.XmlType;
/**
* Java class for MetadataField complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="MetadataField">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="fieldHandle" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="type" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="defaultValue" type="{http://www.w3.org/2001/XMLSchema}string"/>
* <element name="isRequired" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isUserDefined" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isHidden" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isEnforced" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="isPublishData" type="{http://www.w3.org/2001/XMLSchema}boolean"/>
* <element name="initialTagValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "MetadataField", namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", propOrder = {
"fieldHandle",
"name",
"type",
"defaultValue",
"isRequired",
"isUserDefined",
"isHidden",
"isEnforced",
"isPublishData",
"initialTagValue"
})
public class MetadataField {
@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 name;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String type;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta", required = true)
protected String defaultValue;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isRequired;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isUserDefined;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isHidden;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isEnforced;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected boolean isPublishData;
@XmlElement(namespace = "http://www.scene7.com/IpsApi/xsd/2024-05-30-beta")
protected String initialTagValue;
/**
* 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 name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the defaultValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDefaultValue() {
return defaultValue;
}
/**
* Sets the value of the defaultValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDefaultValue(String value) {
this.defaultValue = value;
}
/**
* Gets the value of the isRequired property.
*
*/
public boolean isIsRequired() {
return isRequired;
}
/**
* Sets the value of the isRequired property.
*
*/
public void setIsRequired(boolean value) {
this.isRequired = value;
}
/**
* Gets the value of the isUserDefined property.
*
*/
public boolean isIsUserDefined() {
return isUserDefined;
}
/**
* Sets the value of the isUserDefined property.
*
*/
public void setIsUserDefined(boolean value) {
this.isUserDefined = value;
}
/**
* Gets the value of the isHidden property.
*
*/
public boolean isIsHidden() {
return isHidden;
}
/**
* Sets the value of the isHidden property.
*
*/
public void setIsHidden(boolean value) {
this.isHidden = value;
}
/**
* Gets the value of the isEnforced property.
*
*/
public boolean isIsEnforced() {
return isEnforced;
}
/**
* Sets the value of the isEnforced property.
*
*/
public void setIsEnforced(boolean value) {
this.isEnforced = value;
}
/**
* Gets the value of the isPublishData property.
*
*/
public boolean isIsPublishData() {
return isPublishData;
}
/**
* Sets the value of the isPublishData property.
*
*/
public void setIsPublishData(boolean value) {
this.isPublishData = value;
}
/**
* Gets the value of the initialTagValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getInitialTagValue() {
return initialTagValue;
}
/**
* Sets the value of the initialTagValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setInitialTagValue(String value) {
this.initialTagValue = value;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy