io.atlasmap.v2.BaseMapping 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.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.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
/**
* Java class for BaseMapping complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="BaseMapping">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="alias" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="mappingType" type="{http://atlasmap.io/v2}MappingType" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BaseMapping")
@XmlSeeAlso({
Mapping.class,
Collection.class
})
@JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType")
public abstract class BaseMapping
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlAttribute(name = "alias")
protected String alias;
@XmlAttribute(name = "description")
protected String description;
@XmlAttribute(name = "mappingType")
protected MappingType mappingType;
/**
* Gets the value of the alias property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getAlias() {
return alias;
}
/**
* Sets the value of the alias property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setAlias(String value) {
this.alias = value;
}
/**
* Gets the value of the description property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getDescription() {
return description;
}
/**
* Sets the value of the description property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setDescription(String value) {
this.description = value;
}
/**
* Gets the value of the mappingType property.
*
* @return
* possible object is
* {@link MappingType }
*
*/
public MappingType getMappingType() {
return mappingType;
}
/**
* Sets the value of the mappingType property.
*
* @param value
* allowed object is
* {@link MappingType }
*
*/
public void setMappingType(MappingType value) {
this.mappingType = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy