All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.cassandraunit.dataset.xml.ColumnMetadata Maven / Gradle / Ivy

There is a newer version: 4.3.1.0
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-2 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2013.12.02 at 11:33:34 AM CET 
//


package org.cassandraunit.dataset.xml;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for ColumnMetadata complex type. * *

The following schema fragment specifies the expected content contained within this class. * *

 * <complexType name="ColumnMetadata">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="validationClass" type="{http://xml.dataset.cassandraunit.org}DataType"/>
 *         <element name="indexType" type="{http://xml.dataset.cassandraunit.org}IndexType" minOccurs="0"/>
 *         <element name="indexName" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "ColumnMetadata", propOrder = { "name", "validationClass", "indexType", "indexName" }) public class ColumnMetadata { @XmlElement(required = true) protected String name; @XmlElement(required = true) protected DataType validationClass; protected IndexType indexType; protected String indexName; /** * Gets the value of the name property. * * @return * possible object is * {@link String } * */ public String getName() { return name; } /** * Sets the value of the name property. * * @param value * allowed object is * {@link String } * */ public void setName(String value) { this.name = value; } /** * Gets the value of the validationClass property. * * @return * possible object is * {@link DataType } * */ public DataType getValidationClass() { return validationClass; } /** * Sets the value of the validationClass property. * * @param value * allowed object is * {@link DataType } * */ public void setValidationClass(DataType value) { this.validationClass = value; } /** * Gets the value of the indexType property. * * @return * possible object is * {@link IndexType } * */ public IndexType getIndexType() { return indexType; } /** * Sets the value of the indexType property. * * @param value * allowed object is * {@link IndexType } * */ public void setIndexType(IndexType value) { this.indexType = value; } /** * Gets the value of the indexName property. * * @return * possible object is * {@link String } * */ public String getIndexName() { return indexName; } /** * Sets the value of the indexName property. * * @param value * allowed object is * {@link String } * */ public void setIndexName(String value) { this.indexName = value; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy