io.atlasmap.v2.Document 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.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSeeAlso;
import javax.xml.bind.annotation.XmlType;
import com.fasterxml.jackson.annotation.JsonRootName;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
/**
* Java class for Document complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Document">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="Fields" type="{http://atlasmap.io/v2}Fields"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Document", propOrder = {
"fields"
})
@XmlSeeAlso({
MockDocument.class
})
@XmlRootElement(name = "Document")
@JsonRootName("Document")
@JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType")
public abstract class Document
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Fields", required = true)
protected Fields fields;
/**
* Gets the value of the fields property.
*
* @return
* possible object is
* {@link Fields }
*
*/
public Fields getFields() {
return fields;
}
/**
* Sets the value of the fields property.
*
* @param value
* allowed object is
* {@link Fields }
*
*/
public void setFields(Fields value) {
this.fields = value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy