io.atlasmap.v2.LookupEntry 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 javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for LookupEntry complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="LookupEntry">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="sourceValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="sourceType" type="{http://atlasmap.io/v2}FieldType" />
* <attribute name="targetValue" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="targetType" type="{http://atlasmap.io/v2}FieldType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "LookupEntry")
public class LookupEntry
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "sourceValue", required = true)
protected String sourceValue;
@XmlAttribute(name = "sourceType")
protected FieldType sourceType;
@XmlAttribute(name = "targetValue", required = true)
protected String targetValue;
@XmlAttribute(name = "targetType")
protected FieldType targetType;
/**
* Gets the value of the sourceValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSourceValue() {
return sourceValue;
}
/**
* Sets the value of the sourceValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSourceValue(String value) {
this.sourceValue = value;
}
/**
* Gets the value of the sourceType property.
*
* @return
* possible object is
* {@link FieldType }
*
*/
public FieldType getSourceType() {
return sourceType;
}
/**
* Sets the value of the sourceType property.
*
* @param value
* allowed object is
* {@link FieldType }
*
*/
public void setSourceType(FieldType value) {
this.sourceType = value;
}
/**
* Gets the value of the targetValue property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTargetValue() {
return targetValue;
}
/**
* Sets the value of the targetValue property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTargetValue(String value) {
this.targetValue = value;
}
/**
* Gets the value of the targetType property.
*
* @return
* possible object is
* {@link FieldType }
*
*/
public FieldType getTargetType() {
return targetType;
}
/**
* Sets the value of the targetType property.
*
* @param value
* allowed object is
* {@link FieldType }
*
*/
public void setTargetType(FieldType value) {
this.targetType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy