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

org.jooq.util.jaxb.Database Maven / Gradle / Ivy

There is a newer version: 3.19.16
Show newest version
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0.5-b02-fcs 
// See http://java.sun.com/xml/jaxb 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2012.02.16 at 09:49:36 PM MEZ 
//


package org.jooq.util.jaxb;

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.XmlElement;
import javax.xml.bind.annotation.XmlElementWrapper;
import javax.xml.bind.annotation.XmlType;


/**
 * 

Java class for Database complex type. * *

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

 * <complexType name="Database">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <all>
 *         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         <element name="includes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="excludes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="dateAsTimestamp" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="unsignedTypes" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
 *         <element name="inputSchema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="outputSchema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *         <element name="schemata" type="{http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd}Schemata" minOccurs="0"/>
 *         <element name="masterDataTables" type="{http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd}MasterDataTables" minOccurs="0"/>
 *         <element name="enumTypes" type="{http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd}EnumTypes" minOccurs="0"/>
 *         <element name="forcedTypes" type="{http://www.jooq.org/xsd/jooq-codegen-2.0.4.xsd}ForcedTypes" minOccurs="0"/>
 *       </all>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "Database", propOrder = { }) public class Database { @XmlElement(required = true) protected String name; @XmlElement(defaultValue = ".*") protected String includes; @XmlElement(defaultValue = "") protected String excludes; @XmlElement(defaultValue = "false") protected Boolean dateAsTimestamp; @XmlElement(defaultValue = "true") protected Boolean unsignedTypes; @XmlElement(defaultValue = "") protected String inputSchema; @XmlElement(defaultValue = "") protected String outputSchema; @XmlElementWrapper(name = "schemata") @XmlElement(name = "schema") protected List schemata; @XmlElementWrapper(name = "masterDataTables") @XmlElement(name = "masterDataTable") protected List masterDataTables; @XmlElementWrapper(name = "enumTypes") @XmlElement(name = "enumType") protected List enumTypes; @XmlElementWrapper(name = "forcedTypes") @XmlElement(name = "forcedType") protected List forcedTypes; /** * 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 includes property. * * @return * possible object is * {@link String } * */ public String getIncludes() { return includes; } /** * Sets the value of the includes property. * * @param value * allowed object is * {@link String } * */ public void setIncludes(String value) { this.includes = value; } /** * Gets the value of the excludes property. * * @return * possible object is * {@link String } * */ public String getExcludes() { return excludes; } /** * Sets the value of the excludes property. * * @param value * allowed object is * {@link String } * */ public void setExcludes(String value) { this.excludes = value; } /** * Gets the value of the dateAsTimestamp property. * * @return * possible object is * {@link Boolean } * */ public Boolean isDateAsTimestamp() { return dateAsTimestamp; } /** * Sets the value of the dateAsTimestamp property. * * @param value * allowed object is * {@link Boolean } * */ public void setDateAsTimestamp(Boolean value) { this.dateAsTimestamp = value; } /** * Gets the value of the unsignedTypes property. * * @return * possible object is * {@link Boolean } * */ public Boolean isUnsignedTypes() { return unsignedTypes; } /** * Sets the value of the unsignedTypes property. * * @param value * allowed object is * {@link Boolean } * */ public void setUnsignedTypes(Boolean value) { this.unsignedTypes = value; } /** * Gets the value of the inputSchema property. * * @return * possible object is * {@link String } * */ public String getInputSchema() { return inputSchema; } /** * Sets the value of the inputSchema property. * * @param value * allowed object is * {@link String } * */ public void setInputSchema(String value) { this.inputSchema = value; } /** * Gets the value of the outputSchema property. * * @return * possible object is * {@link String } * */ public String getOutputSchema() { return outputSchema; } /** * Sets the value of the outputSchema property. * * @param value * allowed object is * {@link String } * */ public void setOutputSchema(String value) { this.outputSchema = value; } public List getSchemata() { if (schemata == null) { schemata = new ArrayList(); } return schemata; } public List getMasterDataTables() { if (masterDataTables == null) { masterDataTables = new ArrayList(); } return masterDataTables; } public List getEnumTypes() { if (enumTypes == null) { enumTypes = new ArrayList(); } return enumTypes; } public List getForcedTypes() { if (forcedTypes == null) { forcedTypes = new ArrayList(); } return forcedTypes; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy