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

io.atlasmap.v2.Field Maven / Gradle / Ivy

There is a newer version: 2.5.2
Show newest version
//
// 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: 2018.05.02 at 12:29:58 PM EDT 
//


package io.atlasmap.v2;

import java.io.Serializable;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonTypeInfo;


/**
 * 

Java class for Field complex type. * *

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

 * <complexType name="Field">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="Actions" type="{http://atlasmap.io/v2}Actions" minOccurs="0"/>
 *         <element name="value" type="{http://www.w3.org/2001/XMLSchema}anySimpleType" minOccurs="0"/>
 *       </sequence>
 *       <attribute name="arrayDimensions" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="arraySize" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="collectionType" type="{http://atlasmap.io/v2}CollectionType" />
 *       <attribute name="docId" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="index" type="{http://www.w3.org/2001/XMLSchema}int" />
 *       <attribute name="path" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *       <attribute name="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
 *       <attribute name="status" type="{http://atlasmap.io/v2}FieldStatus" />
 *       <attribute name="fieldType" type="{http://atlasmap.io/v2}FieldType" />
 *       <attribute name="format" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Field", propOrder = { "actions", "value" }) @XmlSeeAlso({ SimpleField.class, PropertyField.class, ConstantField.class, MockField.class }) @JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType") public abstract class Field implements Serializable { private final static long serialVersionUID = 1L; @XmlElement(name = "Actions") protected Actions actions; @XmlSchemaType(name = "anySimpleType") protected Object value; @XmlAttribute(name = "arrayDimensions") protected Integer arrayDimensions; @XmlAttribute(name = "arraySize") protected Integer arraySize; @XmlAttribute(name = "collectionType") protected CollectionType collectionType; @XmlAttribute(name = "docId") protected String docId; @XmlAttribute(name = "index") protected Integer index; @XmlAttribute(name = "path", required = true) protected String path; @XmlAttribute(name = "required") protected Boolean required; @XmlAttribute(name = "status") protected FieldStatus status; @XmlAttribute(name = "fieldType") protected FieldType fieldType; @XmlAttribute(name = "format") protected String format; /** * Gets the value of the actions property. * * @return * possible object is * {@link Actions } * */ public Actions getActions() { return actions; } /** * Sets the value of the actions property. * * @param value * allowed object is * {@link Actions } * */ public void setActions(Actions value) { this.actions = value; } /** * Gets the value of the value property. * * @return * possible object is * {@link Object } * */ public Object getValue() { return value; } /** * Sets the value of the value property. * * @param value * allowed object is * {@link Object } * */ public void setValue(Object value) { this.value = value; } /** * Gets the value of the arrayDimensions property. * * @return * possible object is * {@link Integer } * */ public Integer getArrayDimensions() { return arrayDimensions; } /** * Sets the value of the arrayDimensions property. * * @param value * allowed object is * {@link Integer } * */ public void setArrayDimensions(Integer value) { this.arrayDimensions = value; } /** * Gets the value of the arraySize property. * * @return * possible object is * {@link Integer } * */ public Integer getArraySize() { return arraySize; } /** * Sets the value of the arraySize property. * * @param value * allowed object is * {@link Integer } * */ public void setArraySize(Integer value) { this.arraySize = value; } /** * Gets the value of the collectionType property. * * @return * possible object is * {@link CollectionType } * */ public CollectionType getCollectionType() { return collectionType; } /** * Sets the value of the collectionType property. * * @param value * allowed object is * {@link CollectionType } * */ public void setCollectionType(CollectionType value) { this.collectionType = value; } /** * Gets the value of the docId property. * * @return * possible object is * {@link String } * */ public String getDocId() { return docId; } /** * Sets the value of the docId property. * * @param value * allowed object is * {@link String } * */ public void setDocId(String value) { this.docId = value; } /** * Gets the value of the index property. * * @return * possible object is * {@link Integer } * */ public Integer getIndex() { return index; } /** * Sets the value of the index property. * * @param value * allowed object is * {@link Integer } * */ public void setIndex(Integer value) { this.index = value; } /** * Gets the value of the path property. * * @return * possible object is * {@link String } * */ public String getPath() { return path; } /** * Sets the value of the path property. * * @param value * allowed object is * {@link String } * */ public void setPath(String value) { this.path = value; } /** * Gets the value of the required property. * * @return * possible object is * {@link Boolean } * */ public Boolean isRequired() { return required; } /** * Sets the value of the required property. * * @param value * allowed object is * {@link Boolean } * */ public void setRequired(Boolean value) { this.required = value; } /** * Gets the value of the status property. * * @return * possible object is * {@link FieldStatus } * */ public FieldStatus getStatus() { return status; } /** * Sets the value of the status property. * * @param value * allowed object is * {@link FieldStatus } * */ public void setStatus(FieldStatus value) { this.status = value; } /** * Gets the value of the fieldType property. * * @return * possible object is * {@link FieldType } * */ public FieldType getFieldType() { return fieldType; } /** * Sets the value of the fieldType property. * * @param value * allowed object is * {@link FieldType } * */ public void setFieldType(FieldType value) { this.fieldType = value; } /** * Gets the value of the format property. * * @return * possible object is * {@link String } * */ public String getFormat() { return format; } /** * Sets the value of the format property. * * @param value * allowed object is * {@link String } * */ public void setFormat(String value) { this.format = value; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy