[#1011] Add code generation configuration parameter to avoid generating @Generated annotation
This commit is contained in:
parent
d31fc000a0
commit
f5eb466fd9
@ -6,17 +6,17 @@
|
||||
<version>7</version>
|
||||
</parent>
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
<groupId>org.jooq</groupId>
|
||||
<artifactId>jooq-codegen-maven-example</artifactId>
|
||||
<version>2.0.1</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
|
||||
<name>jOOQ Codegen Maven</name>
|
||||
<description>jOOQ effectively combines complex SQL, typesafety, source code generation, active records, stored procedures, advanced data types, and Java in a fluent, intuitive DSL.</description>
|
||||
<url>http://www.jooq.org</url>
|
||||
|
||||
|
||||
|
||||
|
||||
<licenses>
|
||||
<license>
|
||||
<name>Apache License, Version 2.0</name>
|
||||
@ -24,7 +24,7 @@
|
||||
<distribution>repo</distribution>
|
||||
</license>
|
||||
</licenses>
|
||||
|
||||
|
||||
<scm>
|
||||
<developerConnection>scm:svn:https://jooq.svn.sourceforge.net/svnroot/jooq</developerConnection>
|
||||
<url>https://jooq.svn.sourceforge.net/svnroot/jooq</url>
|
||||
@ -35,7 +35,7 @@
|
||||
<system>Trac</system>
|
||||
<url>https://sourceforge.net/apps/trac/jooq/report/6</url>
|
||||
</issueManagement>
|
||||
|
||||
|
||||
<developers>
|
||||
<developer>
|
||||
<name>Lukas Eder</name>
|
||||
@ -84,17 +84,17 @@
|
||||
<scope>test</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
|
||||
<properties>
|
||||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||||
</properties>
|
||||
|
||||
|
||||
<build>
|
||||
<defaultGoal>deploy</defaultGoal>
|
||||
<finalName>${project.artifactId}-${project.version}</finalName>
|
||||
|
||||
|
||||
<plugins>
|
||||
|
||||
|
||||
<!-- The jOOQ code generator plugin for Postgres / Sybase ASE / MySQL -->
|
||||
<plugin>
|
||||
<groupId>org.jooq</groupId>
|
||||
@ -133,7 +133,7 @@
|
||||
</generator>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
|
||||
<execution>
|
||||
<id>exec2</id>
|
||||
<goals>
|
||||
@ -145,7 +145,7 @@
|
||||
<url>jdbc:jtds:sybase://lukas-hp:5000/TEST</url>
|
||||
<schema>dbo</schema>
|
||||
<user>sa</user>
|
||||
|
||||
|
||||
<!-- [#951] This checks the possibility of empty passwords -->
|
||||
<password></password>
|
||||
</jdbc>
|
||||
@ -168,7 +168,7 @@
|
||||
</generator>
|
||||
</configuration>
|
||||
</execution>
|
||||
|
||||
|
||||
<execution>
|
||||
<id>exec3</id>
|
||||
<goals>
|
||||
@ -187,11 +187,11 @@
|
||||
<name>org.jooq.util.mysql.MySQLDatabase</name>
|
||||
<includes>.*</includes>
|
||||
<excludes>t_book_details</excludes>
|
||||
|
||||
|
||||
<!-- [#958] This checks the schema-rewriting functionality -->
|
||||
<inputSchema>test</inputSchema>
|
||||
<outputSchema>test2</outputSchema>
|
||||
|
||||
|
||||
<!-- [#968] custom enum types -->
|
||||
<enumTypes>
|
||||
<enumType>
|
||||
@ -223,7 +223,7 @@
|
||||
<literals>true,false</literals>
|
||||
</enumType>
|
||||
</enumTypes>
|
||||
|
||||
|
||||
<!-- [#968] [#677] forced column types -->
|
||||
<forcedTypes>
|
||||
<forcedType>
|
||||
@ -260,6 +260,7 @@
|
||||
<relations>true</relations>
|
||||
<deprecated>false</deprecated>
|
||||
<instanceFields>true</instanceFields>
|
||||
<generatedAnnotation>false</generatedAnnotation>
|
||||
</generate>
|
||||
<target>
|
||||
<packageName>org.jooq.util.maven.example.mysql</packageName>
|
||||
@ -287,7 +288,7 @@
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</plugin>
|
||||
|
||||
|
||||
<!-- Plugins used for Maven Central -->
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
@ -303,7 +304,7 @@
|
||||
</execution>
|
||||
</executions>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-compiler-plugin</artifactId>
|
||||
@ -370,7 +371,7 @@
|
||||
<encoding>UTF-8</encoding>
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-eclipse-plugin</artifactId>
|
||||
|
||||
@ -40,10 +40,11 @@ package org.jooq.util.maven;
|
||||
*/
|
||||
public class Generate {
|
||||
|
||||
private String relations = "false";
|
||||
private String deprecated = "true";
|
||||
private String instanceFields = "true";
|
||||
private String unsignedTypes = "true";
|
||||
private String relations = "false";
|
||||
private String deprecated = "true";
|
||||
private String instanceFields = "true";
|
||||
private String unsignedTypes = "true";
|
||||
private String generatedAnnotation = "true";
|
||||
|
||||
String getRelations() {
|
||||
return relations;
|
||||
@ -60,4 +61,8 @@ public class Generate {
|
||||
String getUnsignedTypes() {
|
||||
return unsignedTypes;
|
||||
}
|
||||
|
||||
String getGeneratedAnnotation() {
|
||||
return generatedAnnotation;
|
||||
}
|
||||
}
|
||||
|
||||
@ -40,7 +40,6 @@ package org.jooq.util;
|
||||
import java.io.File;
|
||||
import java.io.FileNotFoundException;
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
import java.io.PrintWriter;
|
||||
import java.lang.reflect.TypeVariable;
|
||||
import java.sql.Connection;
|
||||
@ -48,10 +47,10 @@ import java.sql.SQLException;
|
||||
import java.util.Arrays;
|
||||
import java.util.LinkedHashSet;
|
||||
import java.util.List;
|
||||
import java.util.Properties;
|
||||
import java.util.Set;
|
||||
|
||||
import org.jooq.Configuration;
|
||||
import org.jooq.Constants;
|
||||
import org.jooq.DataType;
|
||||
import org.jooq.EnumType;
|
||||
import org.jooq.Field;
|
||||
@ -102,13 +101,13 @@ import org.jooq.tools.StringUtils;
|
||||
*/
|
||||
public class DefaultGenerator implements Generator {
|
||||
|
||||
private static final JooqLogger log = JooqLogger.getLogger(DefaultGenerator.class);
|
||||
private static String version;
|
||||
private static final JooqLogger log = JooqLogger.getLogger(DefaultGenerator.class);
|
||||
|
||||
private boolean generateDeprecated = true;
|
||||
private boolean generateRelations = false;
|
||||
private boolean generateInstanceFields = true;
|
||||
private boolean generateUnsignedTypes = true;
|
||||
private boolean generateDeprecated = true;
|
||||
private boolean generateRelations = false;
|
||||
private boolean generateInstanceFields = true;
|
||||
private boolean generateUnsignedTypes = true;
|
||||
private boolean generateGeneratedAnnotation = true;
|
||||
private GeneratorStrategy strategy;
|
||||
|
||||
@Override
|
||||
@ -161,6 +160,16 @@ public class DefaultGenerator implements Generator {
|
||||
this.generateUnsignedTypes = generateUnsignedTypes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean generateGeneratedAnnotation() {
|
||||
return generateGeneratedAnnotation;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setGenerateGeneratedAnnotation(boolean generateGeneratedAnnotation) {
|
||||
this.generateGeneratedAnnotation = generateGeneratedAnnotation;
|
||||
}
|
||||
|
||||
// ----
|
||||
|
||||
@Override
|
||||
@ -2383,9 +2392,12 @@ public class DefaultGenerator implements Generator {
|
||||
}
|
||||
|
||||
out.println(" */");
|
||||
out.println(
|
||||
"@javax.annotation.Generated(value = {\"http://www.jooq.org\", \"" + getVersion() + "\"},\n" +
|
||||
" comments = \"This class is generated by jOOQ\")");
|
||||
|
||||
if (generateGeneratedAnnotation()) {
|
||||
out.println(
|
||||
"@javax.annotation.Generated(value = {\"http://www.jooq.org\", \"" + Constants.VERSION + "\"},\n" +
|
||||
" comments = \"This class is generated by jOOQ\")");
|
||||
}
|
||||
|
||||
if (deprecation != null && deprecation.length() > 0) {
|
||||
out.println("@Deprecated");
|
||||
@ -2394,23 +2406,7 @@ public class DefaultGenerator implements Generator {
|
||||
out.printSuppressWarningsPlaceholder();
|
||||
}
|
||||
|
||||
private static String getVersion() {
|
||||
if (version == null) {
|
||||
try {
|
||||
InputStream stream = DefaultGenerator.class.getResourceAsStream("/org/jooq/util/generator.properties");
|
||||
Properties properties = new Properties();
|
||||
properties.load(stream);
|
||||
version = properties.getProperty("version");
|
||||
}
|
||||
catch (Exception e) {
|
||||
version = "2.0.1";
|
||||
}
|
||||
}
|
||||
|
||||
return version;
|
||||
}
|
||||
|
||||
private void printHeader(GenerationWriter out, String packageName) {
|
||||
private void printHeader(GenerationWriter out, String packageName) {
|
||||
out.println("/**");
|
||||
out.println(" * This class is generated by jOOQ");
|
||||
out.println(" */");
|
||||
|
||||
@ -61,6 +61,7 @@ public class GenerationTask extends Task {
|
||||
properties.setProperty("generator.generate.records", "true");
|
||||
properties.setProperty("generator.generate.relations", "false");
|
||||
properties.setProperty("generator.generate.instance-fields", "true");
|
||||
properties.setProperty("generator.generate.generated-annotation", "true");
|
||||
properties.setProperty("generator.generate.unsigned-types", "true");
|
||||
|
||||
properties.setProperty("generator.target.directory", ".");
|
||||
@ -126,6 +127,10 @@ public class GenerationTask extends Task {
|
||||
properties.setProperty("generator.generate.unsigned-types", value);
|
||||
}
|
||||
|
||||
public void setGeneratorgenerategeneratedannotation(String value) {
|
||||
properties.setProperty("generator.generate.generated-annotation", value);
|
||||
}
|
||||
|
||||
public void setGeneratortargetpackage(String value) {
|
||||
properties.setProperty("generator.target.package", value);
|
||||
}
|
||||
|
||||
@ -148,6 +148,7 @@ public class GenerationTool {
|
||||
generator.setGenerateDeprecated(!"false".equalsIgnoreCase(properties.getProperty("generator.generate.deprecated")));
|
||||
generator.setGenerateInstanceFields(!"false".equalsIgnoreCase(properties.getProperty("generator.generate.instance-fields")));
|
||||
generator.setGenerateUnsignedTypes(!"false".equalsIgnoreCase(properties.getProperty("generator.generate.unsigned-types")));
|
||||
generator.setGenerateGeneratedAnnotation(!"false".equalsIgnoreCase(properties.getProperty("generator.generate.generated-annotation")));
|
||||
|
||||
// Generator properties that should in fact be strategy properties
|
||||
strategy.setInstanceFields(generator.generateInstanceFields());
|
||||
|
||||
@ -39,6 +39,8 @@ package org.jooq.util;
|
||||
import java.io.IOException;
|
||||
import java.sql.SQLException;
|
||||
|
||||
import javax.annotation.Generated;
|
||||
|
||||
/**
|
||||
* The Generator provides a basic interface for java code generation
|
||||
*
|
||||
@ -101,6 +103,16 @@ public interface Generator {
|
||||
*/
|
||||
void setGenerateUnsignedTypes(boolean generateUnsignedTypes);
|
||||
|
||||
/**
|
||||
* Whether the {@link Generated} annotation should be generated
|
||||
*/
|
||||
boolean generateGeneratedAnnotation();
|
||||
|
||||
/**
|
||||
* Whether the {@link Generated} annotation should be generated
|
||||
*/
|
||||
void setGenerateGeneratedAnnotation(boolean generateGeneratedAnnotation);
|
||||
|
||||
/**
|
||||
* The target directory
|
||||
*/
|
||||
|
||||
@ -1 +0,0 @@
|
||||
version=2.0.1
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.records=true
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BIT=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.relations=true
|
||||
generator.generate.records=true
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BIT=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.relations=true
|
||||
generator.generate.records=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.records=true
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -38,6 +38,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from t_language
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from t_language
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -12,6 +12,7 @@ generator.database.excludes=
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.unsigned-types=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
generator.strategy.meta-class-prefix=sakila_t_
|
||||
generator.strategy.meta-class-suffix=_meta
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=T_LANGUAGE,T_658_11,T_658_21,T_658_31,T_658_12,T_658_22,T_658_32
|
||||
|
||||
@ -11,6 +11,7 @@ generator.database.includes=DBMS_XPLAN
|
||||
generator.database.excludes=
|
||||
generator.generate.deprecated=false
|
||||
generator.generate.instance-fields=
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
generator.target.package=org.jooq.examples.oracle.sys
|
||||
generator.target.directory=./examples
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.relations=true
|
||||
generator.generate.deprecated=false
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from t_language
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BOOLEAN=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=false
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -33,6 +33,7 @@ generator.database.forced-type.BIT=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
#Generator configuration
|
||||
generator.generate.relations=true
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from t_language
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -34,6 +34,7 @@ generator.database.forced-type.BIT=(?i:(.*?\.)?T_BOOLEANS\.(VC|C|N)_BOOLEAN)
|
||||
generator.generate.relations=true
|
||||
generator.generate.records=true
|
||||
generator.generate.instance-fields=true
|
||||
generator.generate.generated-annotation=false
|
||||
|
||||
#Generate a master data table enum from T_LANGUAGE
|
||||
generator.generate.master-data-tables=t_language,t_658_11,t_658_21,t_658_31,t_658_12,t_658_22,t_658_32
|
||||
|
||||
@ -8,8 +8,6 @@ package org.jooq.examples.mysql.sakila;
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the sakila schema
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
|
||||
@ -8,8 +8,6 @@ package org.jooq.examples.mysql.sakila;
|
||||
*
|
||||
* Convenience access to all stored procedures and functions in sakila
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Routines {
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sakila extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = 550021934;
|
||||
private static final long serialVersionUID = 621153679;
|
||||
|
||||
/**
|
||||
* The singleton instance of sakila
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SakilaFactory extends org.jooq.util.mysql.MySQLFactory {
|
||||
|
||||
private static final long serialVersionUID = 1680109488;
|
||||
private static final long serialVersionUID = -1317109521;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -8,8 +8,6 @@ package org.jooq.examples.mysql.sakila;
|
||||
*
|
||||
* Convenience access to all tables in sakila
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
/**
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.examples.mysql.sakila.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum FilmListRating implements org.jooq.EnumType {
|
||||
G("G"),
|
||||
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.examples.mysql.sakila.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum FilmRating implements org.jooq.EnumType {
|
||||
G("G"),
|
||||
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.examples.mysql.sakila.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum NicerButSlowerFilmListRating implements org.jooq.EnumType {
|
||||
G("G"),
|
||||
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = 1777627561;
|
||||
private static final long serialVersionUID = -2101392470;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmNotInStock extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -371386405;
|
||||
private static final long serialVersionUID = 1665410204;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class GetCustomerBalance extends org.jooq.impl.AbstractRoutine<java.math.BigDecimal> {
|
||||
|
||||
private static final long serialVersionUID = -1924814170;
|
||||
private static final long serialVersionUID = 1238363717;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InventoryHeldByCustomer extends org.jooq.impl.AbstractRoutine<java.lang.Integer> {
|
||||
|
||||
private static final long serialVersionUID = -1019621596;
|
||||
private static final long serialVersionUID = -1179829565;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InventoryInStock extends org.jooq.impl.AbstractRoutine<java.lang.Byte> {
|
||||
|
||||
private static final long serialVersionUID = 1749938664;
|
||||
private static final long serialVersionUID = -407588345;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.routines;
|
||||
*
|
||||
* Provides a customizable report on best customers
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class RewardsReport extends org.jooq.impl.AbstractRoutine<java.lang.Void> {
|
||||
|
||||
private static final long serialVersionUID = -1903711933;
|
||||
private static final long serialVersionUID = -104106522;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Actor extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.ActorRecord> {
|
||||
|
||||
private static final long serialVersionUID = 2087895104;
|
||||
private static final long serialVersionUID = -206991181;
|
||||
|
||||
/**
|
||||
* The singleton instance of actor
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ActorInfo extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.ActorInfoRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2132230826;
|
||||
private static final long serialVersionUID = 663398797;
|
||||
|
||||
/**
|
||||
* The singleton instance of actor_info
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Address extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.AddressRecord> {
|
||||
|
||||
private static final long serialVersionUID = -255466610;
|
||||
private static final long serialVersionUID = 1143237947;
|
||||
|
||||
/**
|
||||
* The singleton instance of address
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Category extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.CategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 120998556;
|
||||
private static final long serialVersionUID = 1620862351;
|
||||
|
||||
/**
|
||||
* The singleton instance of category
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class City extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.CityRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1954219428;
|
||||
private static final long serialVersionUID = 132256521;
|
||||
|
||||
/**
|
||||
* The singleton instance of city
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Country extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.CountryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1109437430;
|
||||
private static final long serialVersionUID = 1933661629;
|
||||
|
||||
/**
|
||||
* The singleton instance of country
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Customer extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.CustomerRecord> {
|
||||
|
||||
private static final long serialVersionUID = -550266799;
|
||||
private static final long serialVersionUID = 477614846;
|
||||
|
||||
/**
|
||||
* The singleton instance of customer
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CustomerList extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.CustomerListRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1498293572;
|
||||
private static final long serialVersionUID = 1715820219;
|
||||
|
||||
/**
|
||||
* The singleton instance of customer_list
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Film extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.FilmRecord> {
|
||||
|
||||
private static final long serialVersionUID = 985926173;
|
||||
private static final long serialVersionUID = -2132629814;
|
||||
|
||||
/**
|
||||
* The singleton instance of film
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmActor extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.FilmActorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1205143384;
|
||||
private static final long serialVersionUID = 133257173;
|
||||
|
||||
/**
|
||||
* The singleton instance of film_actor
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmCategory extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.FilmCategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1737940182;
|
||||
private static final long serialVersionUID = 1695281437;
|
||||
|
||||
/**
|
||||
* The singleton instance of film_category
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmList extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.FilmListRecord> {
|
||||
|
||||
private static final long serialVersionUID = 986457410;
|
||||
private static final long serialVersionUID = -1849457607;
|
||||
|
||||
/**
|
||||
* The singleton instance of film_list
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmText extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.FilmTextRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2067034760;
|
||||
private static final long serialVersionUID = 407078123;
|
||||
|
||||
/**
|
||||
* The singleton instance of film_text
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Inventory extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.InventoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -712099866;
|
||||
private static final long serialVersionUID = -640645607;
|
||||
|
||||
/**
|
||||
* The singleton instance of inventory
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Language extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.LanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2092586221;
|
||||
private static final long serialVersionUID = 1753197824;
|
||||
|
||||
/**
|
||||
* The singleton instance of language
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class NicerButSlowerFilmList extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.NicerButSlowerFilmListRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1067032056;
|
||||
private static final long serialVersionUID = 475763695;
|
||||
|
||||
/**
|
||||
* The singleton instance of nicer_but_slower_film_list
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Payment extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.PaymentRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1991614603;
|
||||
private static final long serialVersionUID = -1063579742;
|
||||
|
||||
/**
|
||||
* The singleton instance of payment
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Rental extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.RentalRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1744725148;
|
||||
private static final long serialVersionUID = -190087407;
|
||||
|
||||
/**
|
||||
* The singleton instance of rental
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SalesByFilmCategory extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.SalesByFilmCategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 833870890;
|
||||
private static final long serialVersionUID = 1538903905;
|
||||
|
||||
/**
|
||||
* The singleton instance of sales_by_film_category
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SalesByStore extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.SalesByStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1080200778;
|
||||
private static final long serialVersionUID = -1195260819;
|
||||
|
||||
/**
|
||||
* The singleton instance of sales_by_store
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Staff extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.StaffRecord> {
|
||||
|
||||
private static final long serialVersionUID = -590320201;
|
||||
private static final long serialVersionUID = 1824284708;
|
||||
|
||||
/**
|
||||
* The singleton instance of staff
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class StaffList extends org.jooq.impl.TableImpl<org.jooq.examples.mysql.sakila.tables.records.StaffListRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1046507427;
|
||||
private static final long serialVersionUID = -696494444;
|
||||
|
||||
/**
|
||||
* The singleton instance of staff_list
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Store extends org.jooq.impl.UpdatableTableImpl<org.jooq.examples.mysql.sakila.tables.records.StoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -310711317;
|
||||
private static final long serialVersionUID = 1981118104;
|
||||
|
||||
/**
|
||||
* The singleton instance of store
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ActorInfoRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.ActorInfoRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1698141927;
|
||||
private static final long serialVersionUID = -424778646;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ActorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.ActorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -928158217;
|
||||
private static final long serialVersionUID = 170144386;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class AddressRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.AddressRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1373317564;
|
||||
private static final long serialVersionUID = -1773246577;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CategoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.CategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1516611703;
|
||||
private static final long serialVersionUID = -1221034988;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CityRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.CityRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1836286513;
|
||||
private static final long serialVersionUID = -906691002;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CountryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.CountryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -164764735;
|
||||
private static final long serialVersionUID = 1509860044;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CustomerListRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.CustomerListRecord> {
|
||||
|
||||
private static final long serialVersionUID = -899684075;
|
||||
private static final long serialVersionUID = -1100718874;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class CustomerRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.CustomerRecord> {
|
||||
|
||||
private static final long serialVersionUID = 165445135;
|
||||
private static final long serialVersionUID = 72829924;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmActorRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.FilmActorRecord> {
|
||||
|
||||
private static final long serialVersionUID = -283651042;
|
||||
private static final long serialVersionUID = 509104809;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmCategoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.FilmCategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1764985182;
|
||||
private static final long serialVersionUID = 207084909;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmListRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.FilmListRecord> {
|
||||
|
||||
private static final long serialVersionUID = 256894785;
|
||||
private static final long serialVersionUID = -431703598;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.FilmRecord> {
|
||||
|
||||
private static final long serialVersionUID = 319995380;
|
||||
private static final long serialVersionUID = -1809172545;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class FilmTextRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.FilmTextRecord> {
|
||||
|
||||
private static final long serialVersionUID = -2079222818;
|
||||
private static final long serialVersionUID = 2128418409;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class InventoryRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.InventoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 255921147;
|
||||
private static final long serialVersionUID = -1147880250;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class LanguageRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.LanguageRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1608134600;
|
||||
private static final long serialVersionUID = 89181779;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class NicerButSlowerFilmListRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.NicerButSlowerFilmListRecord> {
|
||||
|
||||
private static final long serialVersionUID = 431977896;
|
||||
private static final long serialVersionUID = 1319278967;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class PaymentRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.PaymentRecord> {
|
||||
|
||||
private static final long serialVersionUID = 815222398;
|
||||
private static final long serialVersionUID = -521420845;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class RentalRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.RentalRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1079713184;
|
||||
private static final long serialVersionUID = -1584085899;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SalesByFilmCategoryRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.SalesByFilmCategoryRecord> {
|
||||
|
||||
private static final long serialVersionUID = 1213731619;
|
||||
private static final long serialVersionUID = -1561919436;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SalesByStoreRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.SalesByStoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = 363408142;
|
||||
private static final long serialVersionUID = 280065501;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
*
|
||||
* VIEW
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class StaffListRecord extends org.jooq.impl.TableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.StaffListRecord> {
|
||||
|
||||
private static final long serialVersionUID = -112858551;
|
||||
private static final long serialVersionUID = -175503462;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class StaffRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.StaffRecord> {
|
||||
|
||||
private static final long serialVersionUID = -1955768421;
|
||||
private static final long serialVersionUID = -1955658970;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.mysql.sakila.tables.records;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class StoreRecord extends org.jooq.impl.UpdatableRecordImpl<org.jooq.examples.mysql.sakila.tables.records.StoreRecord> {
|
||||
|
||||
private static final long serialVersionUID = -470783653;
|
||||
private static final long serialVersionUID = -1197159322;
|
||||
|
||||
/**
|
||||
* An uncommented item
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Sys extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1757687315;
|
||||
private static final long serialVersionUID = 229459502;
|
||||
|
||||
/**
|
||||
* The singleton instance of SYS
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class SysFactory extends org.jooq.util.oracle.OracleFactory {
|
||||
|
||||
private static final long serialVersionUID = 972427480;
|
||||
private static final long serialVersionUID = -1573961703;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -8,11 +8,9 @@ package org.jooq.examples.oracle.sys.packages;
|
||||
*
|
||||
* Convenience access to all stored procedures and functions in DBMS_XPLAN
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class DbmsXplan extends org.jooq.impl.PackageImpl {
|
||||
|
||||
private static final long serialVersionUID = -809032488;
|
||||
private static final long serialVersionUID = 407039933;
|
||||
|
||||
/**
|
||||
* The singleton instance of DBMS_XPLAN
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Display extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -740957865;
|
||||
private static final long serialVersionUID = 430031880;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DisplayAwr extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 375742900;
|
||||
private static final long serialVersionUID = -1809119387;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DisplayCursor extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -1179383269;
|
||||
private static final long serialVersionUID = -1511371830;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DisplaySqlset extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -1862603314;
|
||||
private static final long serialVersionUID = 865564927;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class PrepareRecords extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = 566504082;
|
||||
private static final long serialVersionUID = -969119677;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.examples.oracle.sys.packages.dbms_xplan;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class ValidateFormat extends org.jooq.impl.AbstractRoutine<java.lang.Object> {
|
||||
|
||||
private static final long serialVersionUID = -1632728069;
|
||||
private static final long serialVersionUID = -1047665620;
|
||||
|
||||
|
||||
/**
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.test.ase.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class Dbo extends org.jooq.impl.SchemaImpl {
|
||||
|
||||
private static final long serialVersionUID = -1955652184;
|
||||
private static final long serialVersionUID = -623226017;
|
||||
|
||||
/**
|
||||
* The singleton instance of dbo
|
||||
|
||||
@ -6,11 +6,9 @@ package org.jooq.test.ase.generatedclasses;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public class DboFactory extends org.jooq.util.ase.ASEFactory {
|
||||
|
||||
private static final long serialVersionUID = 724659326;
|
||||
private static final long serialVersionUID = 800307943;
|
||||
|
||||
/**
|
||||
* Create a factory with a connection
|
||||
|
||||
@ -8,8 +8,6 @@ package org.jooq.test.ase.generatedclasses;
|
||||
*
|
||||
* A class modelling foreign key relationships between tables of the dbo schema
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
@SuppressWarnings({"unchecked"})
|
||||
public class Keys extends org.jooq.impl.AbstractKeys {
|
||||
|
||||
|
||||
@ -8,8 +8,6 @@ package org.jooq.test.ase.generatedclasses;
|
||||
*
|
||||
* Convenience access to all tables in dbo
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public final class Tables {
|
||||
|
||||
/**
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanTrueFalseLc implements org.jooq.EnumType {
|
||||
true_("true"),
|
||||
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanTrueFalseUc implements org.jooq.EnumType {
|
||||
TRUE("TRUE"),
|
||||
|
||||
|
||||
@ -6,8 +6,6 @@ package org.jooq.test.ase.generatedclasses.enums;
|
||||
/**
|
||||
* This class is generated by jOOQ.
|
||||
*/
|
||||
@javax.annotation.Generated(value = {"http://www.jooq.org", "2.0.0"},
|
||||
comments = "This class is generated by jOOQ")
|
||||
public enum BooleanYesNoLc implements org.jooq.EnumType {
|
||||
yes("yes"),
|
||||
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user