// // 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 javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** * <p>Java class for projectType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="projectType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element name="security" type="{}securityType" minOccurs="0"/> * <element name="database" type="{}databaseType"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "projectType", propOrder = { "security", "database" }) public class ProjectType { protected SecurityType security; @XmlElement(required = true) protected DatabaseType database; /** * Gets the value of the security property. * * @return * possible object is * {@link SecurityType } * */ public SecurityType getSecurity() { return security; } /** * Sets the value of the security property. * * @param value * allowed object is * {@link SecurityType } * */ public void setSecurity(SecurityType value) { this.security = value; } /** * Gets the value of the database property. * * @return * possible object is * {@link DatabaseType } * */ public DatabaseType getDatabase() { return database; } /** * Sets the value of the database property. * * @param value * allowed object is * {@link DatabaseType } * */ public void setDatabase(DatabaseType value) { this.database = value; } }