// // This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2 // See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> // Any modifications to this file will be lost upon recompilation of the source schema. // Generated on: 2014.05.02 at 02:03:35 PM UTC // package org.voltdb.compiler.projectfile; import java.util.ArrayList; import java.util.List; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlAttribute; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for exportsType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="exportsType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="connector" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="tables" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="table" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="exportonly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </all> * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * <attribute name="users" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="groups" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "exportsType", propOrder = { "connector" }) public class ExportsType { protected ExportsType.Connector connector; /** * Gets the value of the connector property. * * @return * possible object is * {@link ExportsType.Connector } * */ public ExportsType.Connector getConnector() { return connector; } /** * Sets the value of the connector property. * * @param value * allowed object is * {@link ExportsType.Connector } * */ public void setConnector(ExportsType.Connector value) { this.connector = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <all> * <element name="tables" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="table" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="exportonly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </element> * </all> * <attribute name="class" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="enabled" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * <attribute name="users" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="groups" type="{http://www.w3.org/2001/XMLSchema}string" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { }) public static class Connector { protected ExportsType.Connector.Tables tables; @XmlAttribute(name = "class", required = true) protected String clazz; @XmlAttribute(name = "enabled") protected Boolean enabled; @XmlAttribute(name = "users") protected String users; @XmlAttribute(name = "groups") protected String groups; /** * Gets the value of the tables property. * * @return * possible object is * {@link ExportsType.Connector.Tables } * */ public ExportsType.Connector.Tables getTables() { return tables; } /** * Sets the value of the tables property. * * @param value * allowed object is * {@link ExportsType.Connector.Tables } * */ public void setTables(ExportsType.Connector.Tables value) { this.tables = value; } /** * Gets the value of the clazz property. * * @return * possible object is * {@link String } * */ public String getClazz() { return clazz; } /** * Sets the value of the clazz property. * * @param value * allowed object is * {@link String } * */ public void setClazz(String value) { this.clazz = value; } /** * Gets the value of the enabled property. * * @return * possible object is * {@link Boolean } * */ public boolean isEnabled() { if (enabled == null) { return false; } else { return enabled; } } /** * Sets the value of the enabled property. * * @param value * allowed object is * {@link Boolean } * */ public void setEnabled(Boolean value) { this.enabled = value; } /** * Gets the value of the users property. * * @return * possible object is * {@link String } * */ public String getUsers() { return users; } /** * Sets the value of the users property. * * @param value * allowed object is * {@link String } * */ public void setUsers(String value) { this.users = value; } /** * Gets the value of the groups property. * * @return * possible object is * {@link String } * */ public String getGroups() { return groups; } /** * Sets the value of the groups property. * * @param value * allowed object is * {@link String } * */ public void setGroups(String value) { this.groups = value; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="table" maxOccurs="unbounded" minOccurs="0"> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="exportonly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </element> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "", propOrder = { "table" }) public static class Tables { protected List<ExportsType.Connector.Tables.Table> table; /** * Gets the value of the table property. * * <p> * This accessor method returns a reference to the live list, * not a snapshot. Therefore any modification you make to the * returned list will be present inside the JAXB object. * This is why there is not a <CODE>set</CODE> method for the table property. * * <p> * For example, to add a new item, do as follows: * <pre> * getTable().add(newItem); * </pre> * * * <p> * Objects of the following type(s) are allowed in the list * {@link ExportsType.Connector.Tables.Table } * * */ public List<ExportsType.Connector.Tables.Table> getTable() { if (table == null) { table = new ArrayList<ExportsType.Connector.Tables.Table>(); } return this.table; } /** * <p>Java class for anonymous complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> * <attribute name="exportonly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "") public static class Table { @XmlAttribute(name = "name", required = true) protected String name; @XmlAttribute(name = "exportonly") protected Boolean exportonly; /** * 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 exportonly property. * * @return * possible object is * {@link Boolean } * */ public boolean isExportonly() { if (exportonly == null) { return false; } else { return exportonly; } } /** * Sets the value of the exportonly property. * * @param value * allowed object is * {@link Boolean } * */ public void setExportonly(Boolean value) { this.exportonly = value; } } } } }