io.atlasmap.v2.Collection 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 java.math.BigInteger;
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 Collection complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="Collection">
* <complexContent>
* <extension base="{http://atlasmap.io/v2}BaseMapping">
* <sequence>
* <element name="Mappings" type="{http://atlasmap.io/v2}Mappings"/>
* </sequence>
* <attribute name="collectionSize" type="{http://www.w3.org/2001/XMLSchema}integer" />
* <attribute name="collectionType" use="required" type="{http://atlasmap.io/v2}CollectionType" />
* </extension>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Collection", propOrder = {
"mappings"
})
@JsonTypeInfo(include = JsonTypeInfo.As.PROPERTY, use = JsonTypeInfo.Id.CLASS, property = "jsonType")
public class Collection
extends BaseMapping
implements Serializable
{
private final static long serialVersionUID = 1L;
@XmlElement(name = "Mappings", required = true)
protected Mappings mappings;
@XmlAttribute(name = "collectionSize")
protected BigInteger collectionSize;
@XmlAttribute(name = "collectionType", required = true)
protected CollectionType collectionType;
/**
* Gets the value of the mappings property.
*
* @return
* possible object is
* {@link Mappings }
*
*/
public Mappings getMappings() {
return mappings;
}
/**
* Sets the value of the mappings property.
*
* @param value
* allowed object is
* {@link Mappings }
*
*/
public void setMappings(Mappings value) {
this.mappings = value;
}
/**
* Gets the value of the collectionSize property.
*
* @return
* possible object is
* {@link BigInteger }
*
*/
public BigInteger getCollectionSize() {
return collectionSize;
}
/**
* Sets the value of the collectionSize property.
*
* @param value
* allowed object is
* {@link BigInteger }
*
*/
public void setCollectionSize(BigInteger value) {
this.collectionSize = 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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy