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

com.scene7.ipsapi.MetadataField 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.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="initialTagValue" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "MetadataField", propOrder = { "fieldHandle", "name", "type", "defaultValue", "isRequired", "isUserDefined", "isHidden", "isEnforced", "initialTagValue" }) public class MetadataField { @XmlElement(required = true) protected String fieldHandle; @XmlElement(required = true) protected String name; @XmlElement(required = true) protected String type; @XmlElement(required = true) protected String defaultValue; protected boolean isRequired; protected boolean isUserDefined; protected boolean isHidden; protected boolean isEnforced; 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 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