Java class for MappedSchema complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="MappedSchema">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="input" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="output" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="tables" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}MappedTables" minOccurs="0"/>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "MappedSchema", propOrder = {
-
-})
-public class MappedSchema
- implements Serializable
-{
-
- private final static long serialVersionUID = 205L;
- @XmlElement(required = true)
- protected String input;
- protected String output;
- @XmlElementWrapper(name = "tables")
- @XmlElement(name = "table")
- protected ListJava class for MappedTable complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="MappedTable">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="input" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * <element name="output" type="{http://www.w3.org/2001/XMLSchema}string"/>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "MappedTable", propOrder = {
-
-})
-public class MappedTable
- implements Serializable
-{
-
- private final static long serialVersionUID = 205L;
- @XmlElement(required = true)
- protected String input;
- @XmlElement(required = true)
- protected String output;
-
- /**
- * Gets the value of the input property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getInput() {
- return input;
- }
-
- /**
- * Sets the value of the input property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setInput(String value) {
- this.input = value;
- }
-
- /**
- * Gets the value of the output property.
- *
- * @return
- * possible object is
- * {@link String }
- *
- */
- public String getOutput() {
- return output;
- }
-
- /**
- * Sets the value of the output property.
- *
- * @param value
- * allowed object is
- * {@link String }
- *
- */
- public void setOutput(String value) {
- this.output = value;
- }
-
- public MappedTable withInput(String value) {
- setInput(value);
- return this;
- }
-
- public MappedTable withOutput(String value) {
- setOutput(value);
- return this;
- }
-
-}
diff --git a/jOOQ/src/main/java/org/jooq/conf/RenderKeywordStyle.java b/jOOQ/src/main/java/org/jooq/conf/RenderKeywordStyle.java
deleted file mode 100644
index c4f59e4512..0000000000
--- a/jOOQ/src/main/java/org/jooq/conf/RenderKeywordStyle.java
+++ /dev/null
@@ -1,43 +0,0 @@
-//
-// 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.04.12 at 07:54:20 PM MESZ
-//
-
-
-package org.jooq.conf;
-
-import javax.xml.bind.annotation.XmlEnum;
-
-
-/**
- * Java class for RenderKeywordStyle. - * - *
The following schema fragment specifies the expected content contained within this class. - *
- *
- * <simpleType name="RenderKeywordStyle">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="LOWER"/>
- * <enumeration value="UPPER"/>
- * </restriction>
- * </simpleType>
- *
- *
- */
-@XmlEnum
-public enum RenderKeywordStyle {
-
- LOWER,
- UPPER;
-
- public String value() {
- return name();
- }
-
- public static RenderKeywordStyle fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/jOOQ/src/main/java/org/jooq/conf/RenderMapping.java b/jOOQ/src/main/java/org/jooq/conf/RenderMapping.java
deleted file mode 100644
index 265fd38137..0000000000
--- a/jOOQ/src/main/java/org/jooq/conf/RenderMapping.java
+++ /dev/null
@@ -1,108 +0,0 @@
-//
-// 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.04.12 at 07:54:20 PM MESZ
-//
-
-
-package org.jooq.conf;
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.Collection;
-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 RenderMapping complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="RenderMapping">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="defaultSchema" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
- * <element name="schemata" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}MappedSchemata" minOccurs="0"/>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "RenderMapping", propOrder = {
-
-})
-public class RenderMapping
- implements Serializable
-{
-
- private final static long serialVersionUID = 205L;
- protected String defaultSchema;
- @XmlElementWrapper(name = "schemata")
- @XmlElement(name = "schema")
- protected ListJava class for RenderNameStyle. - * - *
The following schema fragment specifies the expected content contained within this class. - *
- *
- * <simpleType name="RenderNameStyle">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="QUOTED"/>
- * <enumeration value="AS_IS"/>
- * <enumeration value="LOWER"/>
- * <enumeration value="UPPER"/>
- * </restriction>
- * </simpleType>
- *
- *
- */
-@XmlEnum
-public enum RenderNameStyle {
-
- QUOTED,
- AS_IS,
- LOWER,
- UPPER;
-
- public String value() {
- return name();
- }
-
- public static RenderNameStyle fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/jOOQ/src/main/java/org/jooq/conf/Settings.java b/jOOQ/src/main/java/org/jooq/conf/Settings.java
deleted file mode 100644
index c8ea2af72d..0000000000
--- a/jOOQ/src/main/java/org/jooq/conf/Settings.java
+++ /dev/null
@@ -1,301 +0,0 @@
-//
-// 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.04.12 at 07:54:20 PM MESZ
-//
-
-
-package org.jooq.conf;
-
-import java.io.Serializable;
-import java.util.ArrayList;
-import java.util.Collection;
-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 Settings complex type. - * - *
The following schema fragment specifies the expected content contained within this class. - * - *
- * <complexType name="Settings">
- * <complexContent>
- * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
- * <all>
- * <element name="renderSchema" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="renderMapping" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}RenderMapping" minOccurs="0"/>
- * <element name="renderNameStyle" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}RenderNameStyle" minOccurs="0"/>
- * <element name="renderKeywordStyle" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}RenderKeywordStyle" minOccurs="0"/>
- * <element name="renderFormatted" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="statementType" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}StatementType" minOccurs="0"/>
- * <element name="executeLogging" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
- * <element name="executeListeners" type="{http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd}ExecuteListeners" minOccurs="0"/>
- * </all>
- * </restriction>
- * </complexContent>
- * </complexType>
- *
- *
- *
- */
-@XmlAccessorType(XmlAccessType.FIELD)
-@XmlType(name = "Settings", propOrder = {
-
-})
-public class Settings
- implements Serializable
-{
-
- private final static long serialVersionUID = 205L;
- @XmlElement(defaultValue = "true")
- protected Boolean renderSchema = true;
- protected RenderMapping renderMapping;
- @XmlElement(defaultValue = "QUOTED")
- protected RenderNameStyle renderNameStyle = RenderNameStyle.QUOTED;
- @XmlElement(defaultValue = "LOWER")
- protected RenderKeywordStyle renderKeywordStyle = RenderKeywordStyle.LOWER;
- @XmlElement(defaultValue = "false")
- protected Boolean renderFormatted = false;
- @XmlElement(defaultValue = "PREPARED_STATEMENT")
- protected StatementType statementType = StatementType.PREPARED_STATEMENT;
- @XmlElement(defaultValue = "true")
- protected Boolean executeLogging = true;
- @XmlElementWrapper(name = "executeListeners")
- @XmlElement(name = "executeListener")
- protected ListJava class for StatementType. - * - *
The following schema fragment specifies the expected content contained within this class. - *
- *
- * <simpleType name="StatementType">
- * <restriction base="{http://www.w3.org/2001/XMLSchema}string">
- * <enumeration value="STATIC_STATEMENT"/>
- * <enumeration value="PREPARED_STATEMENT"/>
- * </restriction>
- * </simpleType>
- *
- *
- */
-@XmlEnum
-public enum StatementType {
-
- STATIC_STATEMENT,
- PREPARED_STATEMENT;
-
- public String value() {
- return name();
- }
-
- public static StatementType fromValue(String v) {
- return valueOf(v);
- }
-
-}
diff --git a/jOOQ/src/main/java/org/jooq/conf/package-info.java b/jOOQ/src/main/java/org/jooq/conf/package-info.java
deleted file mode 100644
index 3c536e00a3..0000000000
--- a/jOOQ/src/main/java/org/jooq/conf/package-info.java
+++ /dev/null
@@ -1,9 +0,0 @@
-//
-// 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.04.12 at 07:54:20 PM MESZ
-//
-
-@javax.xml.bind.annotation.XmlSchema(namespace = "http://www.jooq.org/xsd/jooq-runtime-2.3.0.xsd")
-package org.jooq.conf;