io.atlasmap.v2.Mapping 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: 2018.02.13 at 05:24:46 PM EST
//
package io.atlasmap.v2;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;
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.XmlType;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
/**
* Java class for Mapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Mapping">
* <complexContent>
* <extension base="{http://atlasmap.io/v2}BaseMapping">
* <sequence>
* <element name="InputField" type="{http://atlasmap.io/v2}Field" maxOccurs="unbounded" minOccurs="0"/>
* <element name="OutputField" type="{http://atlasmap.io/v2}Field" maxOccurs="unbounded" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="delimiter" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="delimiterString" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="lookupTableName" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="strategy" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="strategyClassName" type="{http://www.w3.org/2001/XMLSchema}string" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Mapping", propOrder = {
"inputField",
"outputField"
})
@JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType")
public class Mapping
extends BaseMapping
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "InputField")
protected List inputField;
@XmlElement(name = "OutputField")
protected List outputField;
@XmlAttribute(name = "id")
protected String id;
@XmlAttribute(name = "delimiter")
protected String delimiter;
@XmlAttribute(name = "delimiterString")
protected String delimiterString;
@XmlAttribute(name = "lookupTableName")
protected String lookupTableName;
@XmlAttribute(name = "strategy")
protected String strategy;
@XmlAttribute(name = "strategyClassName")
protected String strategyClassName;
/**
* Gets the value of the inputField property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the inputField property.
*
*
* For example, to add a new item, do as follows:
*
* getInputField().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Field }
*
*
*/
public List getInputField() {
if (inputField == null) {
inputField = new ArrayList();
}
return this.inputField;
}
/**
* Gets the value of the outputField property.
*
*
* This accessor method returns a reference to the live list,
* not a snapshot. Therefore any modification you make to the
* returned list will be present inside the JAXB object.
* This is why there is not a set
method for the outputField property.
*
*
* For example, to add a new item, do as follows:
*
* getOutputField().add(newItem);
*
*
*
*
* Objects of the following type(s) are allowed in the list
* {@link Field }
*
*
*/
public List getOutputField() {
if (outputField == null) {
outputField = new ArrayList();
}
return this.outputField;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the delimiter property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelimiter() {
return delimiter;
}
/**
* Sets the value of the delimiter property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDelimiter(String value) {
this.delimiter = value;
}
/**
* Gets the value of the delimiterString property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDelimiterString() {
return delimiterString;
}
/**
* Sets the value of the delimiterString property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDelimiterString(String value) {
this.delimiterString = value;
}
/**
* Gets the value of the lookupTableName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLookupTableName() {
return lookupTableName;
}
/**
* Sets the value of the lookupTableName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLookupTableName(String value) {
this.lookupTableName = value;
}
/**
* Gets the value of the strategy property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrategy() {
return strategy;
}
/**
* Sets the value of the strategy property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrategy(String value) {
this.strategy = value;
}
/**
* Gets the value of the strategyClassName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStrategyClassName() {
return strategyClassName;
}
/**
* Sets the value of the strategyClassName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStrategyClassName(String value) {
this.strategyClassName = value;
}
}