diff --git a/server/build.gradle b/server/build.gradle index 14e9c26f0..880520165 100644 --- a/server/build.gradle +++ b/server/build.gradle @@ -182,7 +182,8 @@ jooq { name = 'org.jooq.meta.postgres.PostgresDatabase' inputSchema = 'public' includes = '.*' - excludes = '' + excludes = 'jobrunr.*' + includeRoutines = false } target { packageName = 'org.eclipse.openvsx.jooq' diff --git a/server/gradle/libs.versions.toml b/server/gradle/libs.versions.toml index 76213c50e..10de5ec27 100644 --- a/server/gradle/libs.versions.toml +++ b/server/gradle/libs.versions.toml @@ -16,7 +16,7 @@ jaxb-api = "2.3.1" jaxb-impl = "2.3.8" jedis = "6.2.0" jobrunr = "7.5.3" -jooq = "3.19.30" +jooq = "3.19.34" jsonpath = "2.9.0" junit = "5.14.2" loki4j = "1.4.2" diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Indexes.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Indexes.java index 76d534783..2e7406f72 100644 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Indexes.java +++ b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Indexes.java @@ -17,9 +17,6 @@ import org.eclipse.openvsx.jooq.tables.FileDecision; import org.eclipse.openvsx.jooq.tables.FileResource; import org.eclipse.openvsx.jooq.tables.FlywaySchemaHistory; -import org.eclipse.openvsx.jooq.tables.JobrunrBackgroundjobservers; -import org.eclipse.openvsx.jooq.tables.JobrunrJobs; -import org.eclipse.openvsx.jooq.tables.JobrunrRecurringJobs; import org.eclipse.openvsx.jooq.tables.NamespaceMembership; import org.eclipse.openvsx.jooq.tables.PersistedLog; import org.eclipse.openvsx.jooq.tables.RateLimitToken; @@ -82,15 +79,6 @@ public class Indexes { public static final Index IDX_VALIDATION_FAILURE_DETECTED_AT = Internal.createIndex(DSL.name("idx_validation_failure_detected_at"), ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE, new OrderField[] { ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE.DETECTED_AT }, false); public static final Index IDX_VALIDATION_FAILURE_SCAN = Internal.createIndex(DSL.name("idx_validation_failure_scan"), ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE, new OrderField[] { ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE.SCAN_ID }, false); public static final Index IDX_VALIDATION_FAILURE_VALIDATION_TYPE = Internal.createIndex(DSL.name("idx_validation_failure_validation_type"), ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE, new OrderField[] { ExtensionValidationFailure.EXTENSION_VALIDATION_FAILURE.VALIDATION_TYPE }, false); - public static final Index JOBRUNR_BGJOBSRVRS_FSTHB_IDX = Internal.createIndex(DSL.name("jobrunr_bgjobsrvrs_fsthb_idx"), JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS, new OrderField[] { JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS.FIRSTHEARTBEAT }, false); - public static final Index JOBRUNR_BGJOBSRVRS_LSTHB_IDX = Internal.createIndex(DSL.name("jobrunr_bgjobsrvrs_lsthb_idx"), JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS, new OrderField[] { JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS.LASTHEARTBEAT }, false); - public static final Index JOBRUNR_JOB_CREATED_AT_IDX = Internal.createIndex(DSL.name("jobrunr_job_created_at_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.CREATEDAT }, false); - public static final Index JOBRUNR_JOB_RCI_IDX = Internal.createIndex(DSL.name("jobrunr_job_rci_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.RECURRINGJOBID }, false); - public static final Index JOBRUNR_JOB_SCHEDULED_AT_IDX = Internal.createIndex(DSL.name("jobrunr_job_scheduled_at_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.SCHEDULEDAT }, false); - public static final Index JOBRUNR_JOB_SIGNATURE_IDX = Internal.createIndex(DSL.name("jobrunr_job_signature_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.JOBSIGNATURE }, false); - public static final Index JOBRUNR_JOBS_STATE_UPDATED_IDX = Internal.createIndex(DSL.name("jobrunr_jobs_state_updated_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.STATE, JobrunrJobs.JOBRUNR_JOBS.UPDATEDAT }, false); - public static final Index JOBRUNR_RECURRING_JOB_CREATED_AT_IDX = Internal.createIndex(DSL.name("jobrunr_recurring_job_created_at_idx"), JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS, new OrderField[] { JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS.CREATEDAT }, false); - public static final Index JOBRUNR_STATE_IDX = Internal.createIndex(DSL.name("jobrunr_state_idx"), JobrunrJobs.JOBRUNR_JOBS, new OrderField[] { JobrunrJobs.JOBRUNR_JOBS.STATE }, false); public static final Index NAMESPACE_MEMBERSHIP__NAMESPACE__IDX = Internal.createIndex(DSL.name("namespace_membership__namespace__idx"), NamespaceMembership.NAMESPACE_MEMBERSHIP, new OrderField[] { NamespaceMembership.NAMESPACE_MEMBERSHIP.NAMESPACE }, false); public static final Index NAMESPACE_MEMBERSHIP__USER_DATA__IDX = Internal.createIndex(DSL.name("namespace_membership__user_data__idx"), NamespaceMembership.NAMESPACE_MEMBERSHIP, new OrderField[] { NamespaceMembership.NAMESPACE_MEMBERSHIP.USER_DATA }, false); public static final Index PERSISTED_LOG__USER_DATA__IDX = Internal.createIndex(DSL.name("persisted_log__user_data__idx"), PersistedLog.PERSISTED_LOG, new OrderField[] { PersistedLog.PERSISTED_LOG.USER_DATA }, false); diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Keys.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Keys.java index f35b3c8d3..455739e25 100644 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Keys.java +++ b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Keys.java @@ -25,11 +25,6 @@ import org.eclipse.openvsx.jooq.tables.FileDecision; import org.eclipse.openvsx.jooq.tables.FileResource; import org.eclipse.openvsx.jooq.tables.FlywaySchemaHistory; -import org.eclipse.openvsx.jooq.tables.JobrunrBackgroundjobservers; -import org.eclipse.openvsx.jooq.tables.JobrunrJobs; -import org.eclipse.openvsx.jooq.tables.JobrunrMetadata; -import org.eclipse.openvsx.jooq.tables.JobrunrMigrations; -import org.eclipse.openvsx.jooq.tables.JobrunrRecurringJobs; import org.eclipse.openvsx.jooq.tables.MigrationItem; import org.eclipse.openvsx.jooq.tables.Namespace; import org.eclipse.openvsx.jooq.tables.NamespaceMembership; @@ -66,11 +61,6 @@ import org.eclipse.openvsx.jooq.tables.records.FileDecisionRecord; import org.eclipse.openvsx.jooq.tables.records.FileResourceRecord; import org.eclipse.openvsx.jooq.tables.records.FlywaySchemaHistoryRecord; -import org.eclipse.openvsx.jooq.tables.records.JobrunrBackgroundjobserversRecord; -import org.eclipse.openvsx.jooq.tables.records.JobrunrJobsRecord; -import org.eclipse.openvsx.jooq.tables.records.JobrunrMetadataRecord; -import org.eclipse.openvsx.jooq.tables.records.JobrunrMigrationsRecord; -import org.eclipse.openvsx.jooq.tables.records.JobrunrRecurringJobsRecord; import org.eclipse.openvsx.jooq.tables.records.MigrationItemRecord; import org.eclipse.openvsx.jooq.tables.records.NamespaceMembershipRecord; import org.eclipse.openvsx.jooq.tables.records.NamespaceRecord; @@ -125,11 +115,6 @@ public class Keys { public static final UniqueKey FILE_DECISION_PKEY = Internal.createUniqueKey(FileDecision.FILE_DECISION, DSL.name("file_decision_pkey"), new TableField[] { FileDecision.FILE_DECISION.ID }, true); public static final UniqueKey FILE_RESOURCE_PKEY = Internal.createUniqueKey(FileResource.FILE_RESOURCE, DSL.name("file_resource_pkey"), new TableField[] { FileResource.FILE_RESOURCE.ID }, true); public static final UniqueKey FLYWAY_SCHEMA_HISTORY_PK = Internal.createUniqueKey(FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY, DSL.name("flyway_schema_history_pk"), new TableField[] { FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY.INSTALLED_RANK }, true); - public static final UniqueKey JOBRUNR_BACKGROUNDJOBSERVERS_PKEY = Internal.createUniqueKey(JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS, DSL.name("jobrunr_backgroundjobservers_pkey"), new TableField[] { JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS.ID }, true); - public static final UniqueKey JOBRUNR_JOBS_PKEY = Internal.createUniqueKey(JobrunrJobs.JOBRUNR_JOBS, DSL.name("jobrunr_jobs_pkey"), new TableField[] { JobrunrJobs.JOBRUNR_JOBS.ID }, true); - public static final UniqueKey JOBRUNR_METADATA_PKEY = Internal.createUniqueKey(JobrunrMetadata.JOBRUNR_METADATA, DSL.name("jobrunr_metadata_pkey"), new TableField[] { JobrunrMetadata.JOBRUNR_METADATA.ID }, true); - public static final UniqueKey JOBRUNR_MIGRATIONS_PKEY = Internal.createUniqueKey(JobrunrMigrations.JOBRUNR_MIGRATIONS, DSL.name("jobrunr_migrations_pkey"), new TableField[] { JobrunrMigrations.JOBRUNR_MIGRATIONS.ID }, true); - public static final UniqueKey JOBRUNR_RECURRING_JOBS_PKEY = Internal.createUniqueKey(JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS, DSL.name("jobrunr_recurring_jobs_pkey"), new TableField[] { JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS.ID }, true); public static final UniqueKey MIGRATION_ITEM_PKEY = Internal.createUniqueKey(MigrationItem.MIGRATION_ITEM, DSL.name("migration_item_pkey"), new TableField[] { MigrationItem.MIGRATION_ITEM.ID }, true); public static final UniqueKey NAMESPACE_PKEY = Internal.createUniqueKey(Namespace.NAMESPACE, DSL.name("namespace_pkey"), new TableField[] { Namespace.NAMESPACE.ID }, true); public static final UniqueKey UNIQUE_NAMESPACE_PUBLIC_ID = Internal.createUniqueKey(Namespace.NAMESPACE, DSL.name("unique_namespace_public_id"), new TableField[] { Namespace.NAMESPACE.PUBLIC_ID }, true); diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Public.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Public.java index 946400fef..82e203184 100644 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Public.java +++ b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Public.java @@ -28,12 +28,6 @@ import org.eclipse.openvsx.jooq.tables.FileDecision; import org.eclipse.openvsx.jooq.tables.FileResource; import org.eclipse.openvsx.jooq.tables.FlywaySchemaHistory; -import org.eclipse.openvsx.jooq.tables.JobrunrBackgroundjobservers; -import org.eclipse.openvsx.jooq.tables.JobrunrJobs; -import org.eclipse.openvsx.jooq.tables.JobrunrJobsStats; -import org.eclipse.openvsx.jooq.tables.JobrunrMetadata; -import org.eclipse.openvsx.jooq.tables.JobrunrMigrations; -import org.eclipse.openvsx.jooq.tables.JobrunrRecurringJobs; import org.eclipse.openvsx.jooq.tables.MigrationItem; import org.eclipse.openvsx.jooq.tables.Namespace; import org.eclipse.openvsx.jooq.tables.NamespaceMembership; @@ -177,36 +171,6 @@ public class Public extends SchemaImpl { */ public final FlywaySchemaHistory FLYWAY_SCHEMA_HISTORY = FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY; - /** - * The table public.jobrunr_backgroundjobservers. - */ - public final JobrunrBackgroundjobservers JOBRUNR_BACKGROUNDJOBSERVERS = JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS; - - /** - * The table public.jobrunr_jobs. - */ - public final JobrunrJobs JOBRUNR_JOBS = JobrunrJobs.JOBRUNR_JOBS; - - /** - * The table public.jobrunr_jobs_stats. - */ - public final JobrunrJobsStats JOBRUNR_JOBS_STATS = JobrunrJobsStats.JOBRUNR_JOBS_STATS; - - /** - * The table public.jobrunr_metadata. - */ - public final JobrunrMetadata JOBRUNR_METADATA = JobrunrMetadata.JOBRUNR_METADATA; - - /** - * The table public.jobrunr_migrations. - */ - public final JobrunrMigrations JOBRUNR_MIGRATIONS = JobrunrMigrations.JOBRUNR_MIGRATIONS; - - /** - * The table public.jobrunr_recurring_jobs. - */ - public final JobrunrRecurringJobs JOBRUNR_RECURRING_JOBS = JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS; - /** * The table public.migration_item. */ @@ -352,12 +316,6 @@ public final List> getTables() { FileDecision.FILE_DECISION, FileResource.FILE_RESOURCE, FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY, - JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS, - JobrunrJobs.JOBRUNR_JOBS, - JobrunrJobsStats.JOBRUNR_JOBS_STATS, - JobrunrMetadata.JOBRUNR_METADATA, - JobrunrMigrations.JOBRUNR_MIGRATIONS, - JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS, MigrationItem.MIGRATION_ITEM, Namespace.NAMESPACE, NamespaceMembership.NAMESPACE_MEMBERSHIP, diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Routines.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Routines.java deleted file mode 100644 index 93634f070..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Routines.java +++ /dev/null @@ -1,529 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq; - - -import org.eclipse.openvsx.jooq.routines.DaitchMokotoff; -import org.eclipse.openvsx.jooq.routines.Difference; -import org.eclipse.openvsx.jooq.routines.Dmetaphone; -import org.eclipse.openvsx.jooq.routines.DmetaphoneAlt; -import org.eclipse.openvsx.jooq.routines.Levenshtein1; -import org.eclipse.openvsx.jooq.routines.Levenshtein2; -import org.eclipse.openvsx.jooq.routines.LevenshteinLessEqual1; -import org.eclipse.openvsx.jooq.routines.LevenshteinLessEqual2; -import org.eclipse.openvsx.jooq.routines.Metaphone; -import org.eclipse.openvsx.jooq.routines.Soundex; -import org.eclipse.openvsx.jooq.routines.TextSoundex; -import org.jooq.Configuration; -import org.jooq.Field; - - -/** - * Convenience access to all stored procedures and functions in public. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Routines { - - /** - * Call public.daitch_mokotoff - */ - public static String[] daitchMokotoff( - Configuration configuration - , String __1 - ) { - DaitchMokotoff f = new DaitchMokotoff(); - f.set__1(__1); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.daitch_mokotoff as a field. - */ - public static Field daitchMokotoff( - String __1 - ) { - DaitchMokotoff f = new DaitchMokotoff(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Get public.daitch_mokotoff as a field. - */ - public static Field daitchMokotoff( - Field __1 - ) { - DaitchMokotoff f = new DaitchMokotoff(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Call public.difference - */ - public static Integer difference( - Configuration configuration - , String __1 - , String __2 - ) { - Difference f = new Difference(); - f.set__1(__1); - f.set__2(__2); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.difference as a field. - */ - public static Field difference( - String __1 - , String __2 - ) { - Difference f = new Difference(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Get public.difference as a field. - */ - public static Field difference( - Field __1 - , Field __2 - ) { - Difference f = new Difference(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Call public.dmetaphone - */ - public static String dmetaphone( - Configuration configuration - , String __1 - ) { - Dmetaphone f = new Dmetaphone(); - f.set__1(__1); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.dmetaphone as a field. - */ - public static Field dmetaphone( - String __1 - ) { - Dmetaphone f = new Dmetaphone(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Get public.dmetaphone as a field. - */ - public static Field dmetaphone( - Field __1 - ) { - Dmetaphone f = new Dmetaphone(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Call public.dmetaphone_alt - */ - public static String dmetaphoneAlt( - Configuration configuration - , String __1 - ) { - DmetaphoneAlt f = new DmetaphoneAlt(); - f.set__1(__1); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.dmetaphone_alt as a field. - */ - public static Field dmetaphoneAlt( - String __1 - ) { - DmetaphoneAlt f = new DmetaphoneAlt(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Get public.dmetaphone_alt as a field. - */ - public static Field dmetaphoneAlt( - Field __1 - ) { - DmetaphoneAlt f = new DmetaphoneAlt(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Call public.levenshtein - */ - public static Integer levenshtein1( - Configuration configuration - , String __1 - , String __2 - ) { - Levenshtein1 f = new Levenshtein1(); - f.set__1(__1); - f.set__2(__2); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.levenshtein as a field. - */ - public static Field levenshtein1( - String __1 - , String __2 - ) { - Levenshtein1 f = new Levenshtein1(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Get public.levenshtein as a field. - */ - public static Field levenshtein1( - Field __1 - , Field __2 - ) { - Levenshtein1 f = new Levenshtein1(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Call public.levenshtein - */ - public static Integer levenshtein2( - Configuration configuration - , String __1 - , String __2 - , Integer __3 - , Integer __4 - , Integer __5 - ) { - Levenshtein2 f = new Levenshtein2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.levenshtein as a field. - */ - public static Field levenshtein2( - String __1 - , String __2 - , Integer __3 - , Integer __4 - , Integer __5 - ) { - Levenshtein2 f = new Levenshtein2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - - return f.asField(); - } - - /** - * Get public.levenshtein as a field. - */ - public static Field levenshtein2( - Field __1 - , Field __2 - , Field __3 - , Field __4 - , Field __5 - ) { - Levenshtein2 f = new Levenshtein2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - - return f.asField(); - } - - /** - * Call public.levenshtein_less_equal - */ - public static Integer levenshteinLessEqual1( - Configuration configuration - , String __1 - , String __2 - , Integer __3 - ) { - LevenshteinLessEqual1 f = new LevenshteinLessEqual1(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.levenshtein_less_equal as a field. - */ - public static Field levenshteinLessEqual1( - String __1 - , String __2 - , Integer __3 - ) { - LevenshteinLessEqual1 f = new LevenshteinLessEqual1(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - - return f.asField(); - } - - /** - * Get public.levenshtein_less_equal as a field. - */ - public static Field levenshteinLessEqual1( - Field __1 - , Field __2 - , Field __3 - ) { - LevenshteinLessEqual1 f = new LevenshteinLessEqual1(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - - return f.asField(); - } - - /** - * Call public.levenshtein_less_equal - */ - public static Integer levenshteinLessEqual2( - Configuration configuration - , String __1 - , String __2 - , Integer __3 - , Integer __4 - , Integer __5 - , Integer __6 - ) { - LevenshteinLessEqual2 f = new LevenshteinLessEqual2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - f.set__6(__6); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.levenshtein_less_equal as a field. - */ - public static Field levenshteinLessEqual2( - String __1 - , String __2 - , Integer __3 - , Integer __4 - , Integer __5 - , Integer __6 - ) { - LevenshteinLessEqual2 f = new LevenshteinLessEqual2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - f.set__6(__6); - - return f.asField(); - } - - /** - * Get public.levenshtein_less_equal as a field. - */ - public static Field levenshteinLessEqual2( - Field __1 - , Field __2 - , Field __3 - , Field __4 - , Field __5 - , Field __6 - ) { - LevenshteinLessEqual2 f = new LevenshteinLessEqual2(); - f.set__1(__1); - f.set__2(__2); - f.set__3(__3); - f.set__4(__4); - f.set__5(__5); - f.set__6(__6); - - return f.asField(); - } - - /** - * Call public.metaphone - */ - public static String metaphone( - Configuration configuration - , String __1 - , Integer __2 - ) { - Metaphone f = new Metaphone(); - f.set__1(__1); - f.set__2(__2); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.metaphone as a field. - */ - public static Field metaphone( - String __1 - , Integer __2 - ) { - Metaphone f = new Metaphone(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Get public.metaphone as a field. - */ - public static Field metaphone( - Field __1 - , Field __2 - ) { - Metaphone f = new Metaphone(); - f.set__1(__1); - f.set__2(__2); - - return f.asField(); - } - - /** - * Call public.soundex - */ - public static String soundex( - Configuration configuration - , String __1 - ) { - Soundex f = new Soundex(); - f.set__1(__1); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.soundex as a field. - */ - public static Field soundex( - String __1 - ) { - Soundex f = new Soundex(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Get public.soundex as a field. - */ - public static Field soundex( - Field __1 - ) { - Soundex f = new Soundex(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Call public.text_soundex - */ - public static String textSoundex( - Configuration configuration - , String __1 - ) { - TextSoundex f = new TextSoundex(); - f.set__1(__1); - - f.execute(configuration); - return f.getReturnValue(); - } - - /** - * Get public.text_soundex as a field. - */ - public static Field textSoundex( - String __1 - ) { - TextSoundex f = new TextSoundex(); - f.set__1(__1); - - return f.asField(); - } - - /** - * Get public.text_soundex as a field. - */ - public static Field textSoundex( - Field __1 - ) { - TextSoundex f = new TextSoundex(); - f.set__1(__1); - - return f.asField(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Tables.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Tables.java index 0f5ae2699..5dbe10403 100644 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Tables.java +++ b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/Tables.java @@ -25,12 +25,6 @@ import org.eclipse.openvsx.jooq.tables.FileDecision; import org.eclipse.openvsx.jooq.tables.FileResource; import org.eclipse.openvsx.jooq.tables.FlywaySchemaHistory; -import org.eclipse.openvsx.jooq.tables.JobrunrBackgroundjobservers; -import org.eclipse.openvsx.jooq.tables.JobrunrJobs; -import org.eclipse.openvsx.jooq.tables.JobrunrJobsStats; -import org.eclipse.openvsx.jooq.tables.JobrunrMetadata; -import org.eclipse.openvsx.jooq.tables.JobrunrMigrations; -import org.eclipse.openvsx.jooq.tables.JobrunrRecurringJobs; import org.eclipse.openvsx.jooq.tables.MigrationItem; import org.eclipse.openvsx.jooq.tables.Namespace; import org.eclipse.openvsx.jooq.tables.NamespaceMembership; @@ -163,36 +157,6 @@ public class Tables { */ public static final FlywaySchemaHistory FLYWAY_SCHEMA_HISTORY = FlywaySchemaHistory.FLYWAY_SCHEMA_HISTORY; - /** - * The table public.jobrunr_backgroundjobservers. - */ - public static final JobrunrBackgroundjobservers JOBRUNR_BACKGROUNDJOBSERVERS = JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS; - - /** - * The table public.jobrunr_jobs. - */ - public static final JobrunrJobs JOBRUNR_JOBS = JobrunrJobs.JOBRUNR_JOBS; - - /** - * The table public.jobrunr_jobs_stats. - */ - public static final JobrunrJobsStats JOBRUNR_JOBS_STATS = JobrunrJobsStats.JOBRUNR_JOBS_STATS; - - /** - * The table public.jobrunr_metadata. - */ - public static final JobrunrMetadata JOBRUNR_METADATA = JobrunrMetadata.JOBRUNR_METADATA; - - /** - * The table public.jobrunr_migrations. - */ - public static final JobrunrMigrations JOBRUNR_MIGRATIONS = JobrunrMigrations.JOBRUNR_MIGRATIONS; - - /** - * The table public.jobrunr_recurring_jobs. - */ - public static final JobrunrRecurringJobs JOBRUNR_RECURRING_JOBS = JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS; - /** * The table public.migration_item. */ diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DaitchMokotoff.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DaitchMokotoff.java deleted file mode 100644 index aa8007ef2..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DaitchMokotoff.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class DaitchMokotoff extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.daitch_mokotoff.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB.array(), false, false); - - /** - * The parameter public.daitch_mokotoff._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public DaitchMokotoff() { - super("daitch_mokotoff", Public.PUBLIC, SQLDataType.CLOB.array()); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Difference.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Difference.java deleted file mode 100644 index 08c90750a..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Difference.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Difference extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.difference.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); - - /** - * The parameter public.difference._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.difference._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public Difference() { - super("difference", Public.PUBLIC, SQLDataType.INTEGER); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(String value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Dmetaphone.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Dmetaphone.java deleted file mode 100644 index 338746bfd..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Dmetaphone.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Dmetaphone extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.dmetaphone.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); - - /** - * The parameter public.dmetaphone._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public Dmetaphone() { - super("dmetaphone", Public.PUBLIC, SQLDataType.CLOB); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DmetaphoneAlt.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DmetaphoneAlt.java deleted file mode 100644 index 8e82d2d94..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/DmetaphoneAlt.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class DmetaphoneAlt extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.dmetaphone_alt.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); - - /** - * The parameter public.dmetaphone_alt._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public DmetaphoneAlt() { - super("dmetaphone_alt", Public.PUBLIC, SQLDataType.CLOB); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein1.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein1.java deleted file mode 100644 index ac58875ca..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein1.java +++ /dev/null @@ -1,79 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Levenshtein1 extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.levenshtein.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); - - /** - * The parameter public.levenshtein._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public Levenshtein1() { - super("levenshtein", Public.PUBLIC, SQLDataType.INTEGER); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - setOverloaded(true); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(String value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein2.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein2.java deleted file mode 100644 index 4533f8a04..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Levenshtein2.java +++ /dev/null @@ -1,142 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Levenshtein2 extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.levenshtein.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); - - /** - * The parameter public.levenshtein._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein._3. - */ - public static final Parameter _3 = Internal.createParameter("_3", SQLDataType.INTEGER, false, true); - - /** - * The parameter public.levenshtein._4. - */ - public static final Parameter _4 = Internal.createParameter("_4", SQLDataType.INTEGER, false, true); - - /** - * The parameter public.levenshtein._5. - */ - public static final Parameter _5 = Internal.createParameter("_5", SQLDataType.INTEGER, false, true); - - /** - * Create a new routine call instance - */ - public Levenshtein2() { - super("levenshtein", Public.PUBLIC, SQLDataType.INTEGER); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - addInParameter(_3); - addInParameter(_4); - addInParameter(_5); - setOverloaded(true); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(String value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } - - /** - * Set the _3 parameter IN value to the routine - */ - public void set__3(Integer value) { - setValue(_3, value); - } - - /** - * Set the _3 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__3(Field field) { - setField(_3, field); - } - - /** - * Set the _4 parameter IN value to the routine - */ - public void set__4(Integer value) { - setValue(_4, value); - } - - /** - * Set the _4 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__4(Field field) { - setField(_4, field); - } - - /** - * Set the _5 parameter IN value to the routine - */ - public void set__5(Integer value) { - setValue(_5, value); - } - - /** - * Set the _5 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__5(Field field) { - setField(_5, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual1.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual1.java deleted file mode 100644 index 674d9070e..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual1.java +++ /dev/null @@ -1,100 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class LevenshteinLessEqual1 extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.levenshtein_less_equal.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); - - /** - * The parameter public.levenshtein_less_equal._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein_less_equal._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein_less_equal._3. - */ - public static final Parameter _3 = Internal.createParameter("_3", SQLDataType.INTEGER, false, true); - - /** - * Create a new routine call instance - */ - public LevenshteinLessEqual1() { - super("levenshtein_less_equal", Public.PUBLIC, SQLDataType.INTEGER); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - addInParameter(_3); - setOverloaded(true); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(String value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } - - /** - * Set the _3 parameter IN value to the routine - */ - public void set__3(Integer value) { - setValue(_3, value); - } - - /** - * Set the _3 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__3(Field field) { - setField(_3, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual2.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual2.java deleted file mode 100644 index 8dee9aac5..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/LevenshteinLessEqual2.java +++ /dev/null @@ -1,163 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class LevenshteinLessEqual2 extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.levenshtein_less_equal.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.INTEGER, false, false); - - /** - * The parameter public.levenshtein_less_equal._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein_less_equal._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.CLOB, false, true); - - /** - * The parameter public.levenshtein_less_equal._3. - */ - public static final Parameter _3 = Internal.createParameter("_3", SQLDataType.INTEGER, false, true); - - /** - * The parameter public.levenshtein_less_equal._4. - */ - public static final Parameter _4 = Internal.createParameter("_4", SQLDataType.INTEGER, false, true); - - /** - * The parameter public.levenshtein_less_equal._5. - */ - public static final Parameter _5 = Internal.createParameter("_5", SQLDataType.INTEGER, false, true); - - /** - * The parameter public.levenshtein_less_equal._6. - */ - public static final Parameter _6 = Internal.createParameter("_6", SQLDataType.INTEGER, false, true); - - /** - * Create a new routine call instance - */ - public LevenshteinLessEqual2() { - super("levenshtein_less_equal", Public.PUBLIC, SQLDataType.INTEGER); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - addInParameter(_3); - addInParameter(_4); - addInParameter(_5); - addInParameter(_6); - setOverloaded(true); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(String value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } - - /** - * Set the _3 parameter IN value to the routine - */ - public void set__3(Integer value) { - setValue(_3, value); - } - - /** - * Set the _3 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__3(Field field) { - setField(_3, field); - } - - /** - * Set the _4 parameter IN value to the routine - */ - public void set__4(Integer value) { - setValue(_4, value); - } - - /** - * Set the _4 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__4(Field field) { - setField(_4, field); - } - - /** - * Set the _5 parameter IN value to the routine - */ - public void set__5(Integer value) { - setValue(_5, value); - } - - /** - * Set the _5 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__5(Field field) { - setField(_5, field); - } - - /** - * Set the _6 parameter IN value to the routine - */ - public void set__6(Integer value) { - setValue(_6, value); - } - - /** - * Set the _6 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__6(Field field) { - setField(_6, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Metaphone.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Metaphone.java deleted file mode 100644 index 43f864628..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Metaphone.java +++ /dev/null @@ -1,78 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Metaphone extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.metaphone.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); - - /** - * The parameter public.metaphone._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * The parameter public.metaphone._2. - */ - public static final Parameter _2 = Internal.createParameter("_2", SQLDataType.INTEGER, false, true); - - /** - * Create a new routine call instance - */ - public Metaphone() { - super("metaphone", Public.PUBLIC, SQLDataType.CLOB); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - addInParameter(_2); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } - - /** - * Set the _2 parameter IN value to the routine - */ - public void set__2(Integer value) { - setValue(_2, value); - } - - /** - * Set the _2 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__2(Field field) { - setField(_2, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Soundex.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Soundex.java deleted file mode 100644 index 592d39243..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/Soundex.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class Soundex extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.soundex.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); - - /** - * The parameter public.soundex._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public Soundex() { - super("soundex", Public.PUBLIC, SQLDataType.CLOB); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/TextSoundex.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/TextSoundex.java deleted file mode 100644 index ec5f11b85..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/routines/TextSoundex.java +++ /dev/null @@ -1,57 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.routines; - - -import org.eclipse.openvsx.jooq.Public; -import org.jooq.Field; -import org.jooq.Parameter; -import org.jooq.impl.AbstractRoutine; -import org.jooq.impl.Internal; -import org.jooq.impl.SQLDataType; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class TextSoundex extends AbstractRoutine { - - private static final long serialVersionUID = 1L; - - /** - * The parameter public.text_soundex.RETURN_VALUE. - */ - public static final Parameter RETURN_VALUE = Internal.createParameter("RETURN_VALUE", SQLDataType.CLOB, false, false); - - /** - * The parameter public.text_soundex._1. - */ - public static final Parameter _1 = Internal.createParameter("_1", SQLDataType.CLOB, false, true); - - /** - * Create a new routine call instance - */ - public TextSoundex() { - super("text_soundex", Public.PUBLIC, SQLDataType.CLOB); - - setReturnParameter(RETURN_VALUE); - addInParameter(_1); - } - - /** - * Set the _1 parameter IN value to the routine - */ - public void set__1(String value) { - setValue(_1, value); - } - - /** - * Set the _1 parameter to the function to be used with a - * {@link org.jooq.Select} statement - */ - public void set__1(Field field) { - setField(_1, field); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrBackgroundjobservers.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrBackgroundjobservers.java deleted file mode 100644 index a41a6444f..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrBackgroundjobservers.java +++ /dev/null @@ -1,319 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.math.BigDecimal; -import java.time.LocalDateTime; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; - -import org.eclipse.openvsx.jooq.Indexes; -import org.eclipse.openvsx.jooq.Keys; -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrBackgroundjobserversRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Index; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.UniqueKey; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrBackgroundjobservers extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of - * public.jobrunr_backgroundjobservers - */ - public static final JobrunrBackgroundjobservers JOBRUNR_BACKGROUNDJOBSERVERS = new JobrunrBackgroundjobservers(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrBackgroundjobserversRecord.class; - } - - /** - * The column public.jobrunr_backgroundjobservers.id. - */ - public final TableField ID = createField(DSL.name("id"), SQLDataType.CHAR(36).nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.workerpoolsize. - */ - public final TableField WORKERPOOLSIZE = createField(DSL.name("workerpoolsize"), SQLDataType.INTEGER.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.pollintervalinseconds. - */ - public final TableField POLLINTERVALINSECONDS = createField(DSL.name("pollintervalinseconds"), SQLDataType.INTEGER.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.firstheartbeat. - */ - public final TableField FIRSTHEARTBEAT = createField(DSL.name("firstheartbeat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.lastheartbeat. - */ - public final TableField LASTHEARTBEAT = createField(DSL.name("lastheartbeat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - /** - * The column public.jobrunr_backgroundjobservers.running. - */ - public final TableField RUNNING = createField(DSL.name("running"), SQLDataType.INTEGER.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.systemtotalmemory. - */ - public final TableField SYSTEMTOTALMEMORY = createField(DSL.name("systemtotalmemory"), SQLDataType.BIGINT.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.systemfreememory. - */ - public final TableField SYSTEMFREEMEMORY = createField(DSL.name("systemfreememory"), SQLDataType.BIGINT.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.systemcpuload. - */ - public final TableField SYSTEMCPULOAD = createField(DSL.name("systemcpuload"), SQLDataType.NUMERIC(3, 2).nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.processmaxmemory. - */ - public final TableField PROCESSMAXMEMORY = createField(DSL.name("processmaxmemory"), SQLDataType.BIGINT.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.processfreememory. - */ - public final TableField PROCESSFREEMEMORY = createField(DSL.name("processfreememory"), SQLDataType.BIGINT.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.processallocatedmemory. - */ - public final TableField PROCESSALLOCATEDMEMORY = createField(DSL.name("processallocatedmemory"), SQLDataType.BIGINT.nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.processcpuload. - */ - public final TableField PROCESSCPULOAD = createField(DSL.name("processcpuload"), SQLDataType.NUMERIC(3, 2).nullable(false), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.deletesucceededjobsafter. - */ - public final TableField DELETESUCCEEDEDJOBSAFTER = createField(DSL.name("deletesucceededjobsafter"), SQLDataType.VARCHAR(32), this, ""); - - /** - * The column - * public.jobrunr_backgroundjobservers.permanentlydeletejobsafter. - */ - public final TableField PERMANENTLYDELETEJOBSAFTER = createField(DSL.name("permanentlydeletejobsafter"), SQLDataType.VARCHAR(32), this, ""); - - /** - * The column public.jobrunr_backgroundjobservers.name. - */ - public final TableField NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(128), this, ""); - - private JobrunrBackgroundjobservers(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrBackgroundjobservers(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); - } - - /** - * Create an aliased public.jobrunr_backgroundjobservers table - * reference - */ - public JobrunrBackgroundjobservers(String alias) { - this(DSL.name(alias), JOBRUNR_BACKGROUNDJOBSERVERS); - } - - /** - * Create an aliased public.jobrunr_backgroundjobservers table - * reference - */ - public JobrunrBackgroundjobservers(Name alias) { - this(alias, JOBRUNR_BACKGROUNDJOBSERVERS); - } - - /** - * Create a public.jobrunr_backgroundjobservers table reference - */ - public JobrunrBackgroundjobservers() { - this(DSL.name("jobrunr_backgroundjobservers"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public List getIndexes() { - return Arrays.asList(Indexes.JOBRUNR_BGJOBSRVRS_FSTHB_IDX, Indexes.JOBRUNR_BGJOBSRVRS_LSTHB_IDX); - } - - @Override - public UniqueKey getPrimaryKey() { - return Keys.JOBRUNR_BACKGROUNDJOBSERVERS_PKEY; - } - - @Override - public JobrunrBackgroundjobservers as(String alias) { - return new JobrunrBackgroundjobservers(DSL.name(alias), this); - } - - @Override - public JobrunrBackgroundjobservers as(Name alias) { - return new JobrunrBackgroundjobservers(alias, this); - } - - @Override - public JobrunrBackgroundjobservers as(Table alias) { - return new JobrunrBackgroundjobservers(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrBackgroundjobservers rename(String name) { - return new JobrunrBackgroundjobservers(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrBackgroundjobservers rename(Name name) { - return new JobrunrBackgroundjobservers(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrBackgroundjobservers rename(Table name) { - return new JobrunrBackgroundjobservers(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers where(Condition condition) { - return new JobrunrBackgroundjobservers(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrBackgroundjobservers where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrBackgroundjobservers where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrBackgroundjobservers where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrBackgroundjobservers where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrBackgroundjobservers whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobs.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobs.java deleted file mode 100644 index 394d7b527..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobs.java +++ /dev/null @@ -1,267 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.time.LocalDateTime; -import java.util.Arrays; -import java.util.Collection; -import java.util.List; - -import org.eclipse.openvsx.jooq.Indexes; -import org.eclipse.openvsx.jooq.Keys; -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrJobsRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Index; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.UniqueKey; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrJobs extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of public.jobrunr_jobs - */ - public static final JobrunrJobs JOBRUNR_JOBS = new JobrunrJobs(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrJobsRecord.class; - } - - /** - * The column public.jobrunr_jobs.id. - */ - public final TableField ID = createField(DSL.name("id"), SQLDataType.CHAR(36).nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.version. - */ - public final TableField VERSION = createField(DSL.name("version"), SQLDataType.INTEGER.nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.jobasjson. - */ - public final TableField JOBASJSON = createField(DSL.name("jobasjson"), SQLDataType.CLOB.nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.jobsignature. - */ - public final TableField JOBSIGNATURE = createField(DSL.name("jobsignature"), SQLDataType.VARCHAR(512).nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.state. - */ - public final TableField STATE = createField(DSL.name("state"), SQLDataType.VARCHAR(36).nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.createdat. - */ - public final TableField CREATEDAT = createField(DSL.name("createdat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.updatedat. - */ - public final TableField UPDATEDAT = createField(DSL.name("updatedat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - /** - * The column public.jobrunr_jobs.scheduledat. - */ - public final TableField SCHEDULEDAT = createField(DSL.name("scheduledat"), SQLDataType.LOCALDATETIME(6), this, ""); - - /** - * The column public.jobrunr_jobs.recurringjobid. - */ - public final TableField RECURRINGJOBID = createField(DSL.name("recurringjobid"), SQLDataType.VARCHAR(128), this, ""); - - private JobrunrJobs(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrJobs(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); - } - - /** - * Create an aliased public.jobrunr_jobs table reference - */ - public JobrunrJobs(String alias) { - this(DSL.name(alias), JOBRUNR_JOBS); - } - - /** - * Create an aliased public.jobrunr_jobs table reference - */ - public JobrunrJobs(Name alias) { - this(alias, JOBRUNR_JOBS); - } - - /** - * Create a public.jobrunr_jobs table reference - */ - public JobrunrJobs() { - this(DSL.name("jobrunr_jobs"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public List getIndexes() { - return Arrays.asList(Indexes.JOBRUNR_JOB_CREATED_AT_IDX, Indexes.JOBRUNR_JOB_RCI_IDX, Indexes.JOBRUNR_JOB_SCHEDULED_AT_IDX, Indexes.JOBRUNR_JOB_SIGNATURE_IDX, Indexes.JOBRUNR_JOBS_STATE_UPDATED_IDX, Indexes.JOBRUNR_STATE_IDX); - } - - @Override - public UniqueKey getPrimaryKey() { - return Keys.JOBRUNR_JOBS_PKEY; - } - - @Override - public JobrunrJobs as(String alias) { - return new JobrunrJobs(DSL.name(alias), this); - } - - @Override - public JobrunrJobs as(Name alias) { - return new JobrunrJobs(alias, this); - } - - @Override - public JobrunrJobs as(Table alias) { - return new JobrunrJobs(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobs rename(String name) { - return new JobrunrJobs(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobs rename(Name name) { - return new JobrunrJobs(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobs rename(Table name) { - return new JobrunrJobs(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs where(Condition condition) { - return new JobrunrJobs(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobs where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobs where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobs where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobs where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobs whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobsStats.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobsStats.java deleted file mode 100644 index 96a5bb37d..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrJobsStats.java +++ /dev/null @@ -1,292 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.math.BigDecimal; -import java.util.Collection; - -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrJobsStatsRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrJobsStats extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of public.jobrunr_jobs_stats - */ - public static final JobrunrJobsStats JOBRUNR_JOBS_STATS = new JobrunrJobsStats(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrJobsStatsRecord.class; - } - - /** - * The column public.jobrunr_jobs_stats.total. - */ - public final TableField TOTAL = createField(DSL.name("total"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.scheduled. - */ - public final TableField SCHEDULED = createField(DSL.name("scheduled"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.enqueued. - */ - public final TableField ENQUEUED = createField(DSL.name("enqueued"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.processing. - */ - public final TableField PROCESSING = createField(DSL.name("processing"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.failed. - */ - public final TableField FAILED = createField(DSL.name("failed"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.succeeded. - */ - public final TableField SUCCEEDED = createField(DSL.name("succeeded"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.alltimesucceeded. - */ - public final TableField ALLTIMESUCCEEDED = createField(DSL.name("alltimesucceeded"), SQLDataType.NUMERIC, this, ""); - - /** - * The column public.jobrunr_jobs_stats.deleted. - */ - public final TableField DELETED = createField(DSL.name("deleted"), SQLDataType.BIGINT, this, ""); - - /** - * The column - * public.jobrunr_jobs_stats.nbrofbackgroundjobservers. - */ - public final TableField NBROFBACKGROUNDJOBSERVERS = createField(DSL.name("nbrofbackgroundjobservers"), SQLDataType.BIGINT, this, ""); - - /** - * The column public.jobrunr_jobs_stats.nbrofrecurringjobs. - */ - public final TableField NBROFRECURRINGJOBS = createField(DSL.name("nbrofrecurringjobs"), SQLDataType.BIGINT, this, ""); - - private JobrunrJobsStats(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrJobsStats(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.view(""" - create view "jobrunr_jobs_stats" as WITH job_stat_results AS ( - SELECT jobrunr_jobs.state, - count(*) AS count - FROM jobrunr_jobs - GROUP BY ROLLUP(jobrunr_jobs.state) - ) - SELECT COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE (job_stat_results.state IS NULL)), (0)::bigint) AS total, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'SCHEDULED'::text)), (0)::bigint) AS scheduled, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'ENQUEUED'::text)), (0)::bigint) AS enqueued, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'PROCESSING'::text)), (0)::bigint) AS processing, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'FAILED'::text)), (0)::bigint) AS failed, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'SUCCEEDED'::text)), (0)::bigint) AS succeeded, - COALESCE(( SELECT ((jm.value)::character(10))::numeric(10,0) AS value - FROM jobrunr_metadata jm - WHERE ((jm.id)::text = 'succeeded-jobs-counter-cluster'::text)), (0)::numeric) AS alltimesucceeded, - COALESCE(( SELECT job_stat_results.count - FROM job_stat_results - WHERE ((job_stat_results.state)::text = 'DELETED'::text)), (0)::bigint) AS deleted, - ( SELECT count(*) AS count - FROM jobrunr_backgroundjobservers) AS nbrofbackgroundjobservers, - ( SELECT count(*) AS count - FROM jobrunr_recurring_jobs) AS nbrofrecurringjobs; - """), where); - } - - /** - * Create an aliased public.jobrunr_jobs_stats table reference - */ - public JobrunrJobsStats(String alias) { - this(DSL.name(alias), JOBRUNR_JOBS_STATS); - } - - /** - * Create an aliased public.jobrunr_jobs_stats table reference - */ - public JobrunrJobsStats(Name alias) { - this(alias, JOBRUNR_JOBS_STATS); - } - - /** - * Create a public.jobrunr_jobs_stats table reference - */ - public JobrunrJobsStats() { - this(DSL.name("jobrunr_jobs_stats"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public JobrunrJobsStats as(String alias) { - return new JobrunrJobsStats(DSL.name(alias), this); - } - - @Override - public JobrunrJobsStats as(Name alias) { - return new JobrunrJobsStats(alias, this); - } - - @Override - public JobrunrJobsStats as(Table alias) { - return new JobrunrJobsStats(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobsStats rename(String name) { - return new JobrunrJobsStats(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobsStats rename(Name name) { - return new JobrunrJobsStats(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrJobsStats rename(Table name) { - return new JobrunrJobsStats(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats where(Condition condition) { - return new JobrunrJobsStats(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobsStats where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobsStats where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobsStats where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrJobsStats where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrJobsStats whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMetadata.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMetadata.java deleted file mode 100644 index 663e51ead..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMetadata.java +++ /dev/null @@ -1,243 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.time.LocalDateTime; -import java.util.Collection; - -import org.eclipse.openvsx.jooq.Keys; -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrMetadataRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.UniqueKey; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrMetadata extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of public.jobrunr_metadata - */ - public static final JobrunrMetadata JOBRUNR_METADATA = new JobrunrMetadata(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrMetadataRecord.class; - } - - /** - * The column public.jobrunr_metadata.id. - */ - public final TableField ID = createField(DSL.name("id"), SQLDataType.VARCHAR(156).nullable(false), this, ""); - - /** - * The column public.jobrunr_metadata.name. - */ - public final TableField NAME = createField(DSL.name("name"), SQLDataType.VARCHAR(92).nullable(false), this, ""); - - /** - * The column public.jobrunr_metadata.owner. - */ - public final TableField OWNER = createField(DSL.name("owner"), SQLDataType.VARCHAR(64).nullable(false), this, ""); - - /** - * The column public.jobrunr_metadata.value. - */ - public final TableField VALUE = createField(DSL.name("value"), SQLDataType.CLOB.nullable(false), this, ""); - - /** - * The column public.jobrunr_metadata.createdat. - */ - public final TableField CREATEDAT = createField(DSL.name("createdat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - /** - * The column public.jobrunr_metadata.updatedat. - */ - public final TableField UPDATEDAT = createField(DSL.name("updatedat"), SQLDataType.LOCALDATETIME(6).nullable(false), this, ""); - - private JobrunrMetadata(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrMetadata(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); - } - - /** - * Create an aliased public.jobrunr_metadata table reference - */ - public JobrunrMetadata(String alias) { - this(DSL.name(alias), JOBRUNR_METADATA); - } - - /** - * Create an aliased public.jobrunr_metadata table reference - */ - public JobrunrMetadata(Name alias) { - this(alias, JOBRUNR_METADATA); - } - - /** - * Create a public.jobrunr_metadata table reference - */ - public JobrunrMetadata() { - this(DSL.name("jobrunr_metadata"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public UniqueKey getPrimaryKey() { - return Keys.JOBRUNR_METADATA_PKEY; - } - - @Override - public JobrunrMetadata as(String alias) { - return new JobrunrMetadata(DSL.name(alias), this); - } - - @Override - public JobrunrMetadata as(Name alias) { - return new JobrunrMetadata(alias, this); - } - - @Override - public JobrunrMetadata as(Table alias) { - return new JobrunrMetadata(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrMetadata rename(String name) { - return new JobrunrMetadata(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrMetadata rename(Name name) { - return new JobrunrMetadata(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrMetadata rename(Table name) { - return new JobrunrMetadata(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata where(Condition condition) { - return new JobrunrMetadata(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMetadata where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMetadata where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMetadata where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMetadata where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMetadata whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMigrations.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMigrations.java deleted file mode 100644 index b6993e22a..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrMigrations.java +++ /dev/null @@ -1,227 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.util.Collection; - -import org.eclipse.openvsx.jooq.Keys; -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrMigrationsRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.UniqueKey; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrMigrations extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of public.jobrunr_migrations - */ - public static final JobrunrMigrations JOBRUNR_MIGRATIONS = new JobrunrMigrations(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrMigrationsRecord.class; - } - - /** - * The column public.jobrunr_migrations.id. - */ - public final TableField ID = createField(DSL.name("id"), SQLDataType.CHAR(36).nullable(false), this, ""); - - /** - * The column public.jobrunr_migrations.script. - */ - public final TableField SCRIPT = createField(DSL.name("script"), SQLDataType.VARCHAR(64).nullable(false), this, ""); - - /** - * The column public.jobrunr_migrations.installedon. - */ - public final TableField INSTALLEDON = createField(DSL.name("installedon"), SQLDataType.VARCHAR(29).nullable(false), this, ""); - - private JobrunrMigrations(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrMigrations(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); - } - - /** - * Create an aliased public.jobrunr_migrations table reference - */ - public JobrunrMigrations(String alias) { - this(DSL.name(alias), JOBRUNR_MIGRATIONS); - } - - /** - * Create an aliased public.jobrunr_migrations table reference - */ - public JobrunrMigrations(Name alias) { - this(alias, JOBRUNR_MIGRATIONS); - } - - /** - * Create a public.jobrunr_migrations table reference - */ - public JobrunrMigrations() { - this(DSL.name("jobrunr_migrations"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public UniqueKey getPrimaryKey() { - return Keys.JOBRUNR_MIGRATIONS_PKEY; - } - - @Override - public JobrunrMigrations as(String alias) { - return new JobrunrMigrations(DSL.name(alias), this); - } - - @Override - public JobrunrMigrations as(Name alias) { - return new JobrunrMigrations(alias, this); - } - - @Override - public JobrunrMigrations as(Table alias) { - return new JobrunrMigrations(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrMigrations rename(String name) { - return new JobrunrMigrations(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrMigrations rename(Name name) { - return new JobrunrMigrations(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrMigrations rename(Table name) { - return new JobrunrMigrations(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations where(Condition condition) { - return new JobrunrMigrations(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMigrations where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMigrations where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMigrations where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrMigrations where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrMigrations whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrRecurringJobs.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrRecurringJobs.java deleted file mode 100644 index 3e703825c..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/JobrunrRecurringJobs.java +++ /dev/null @@ -1,243 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables; - - -import java.util.Arrays; -import java.util.Collection; -import java.util.List; - -import org.eclipse.openvsx.jooq.Indexes; -import org.eclipse.openvsx.jooq.Keys; -import org.eclipse.openvsx.jooq.Public; -import org.eclipse.openvsx.jooq.tables.records.JobrunrRecurringJobsRecord; -import org.jooq.Condition; -import org.jooq.Field; -import org.jooq.Index; -import org.jooq.Name; -import org.jooq.PlainSQL; -import org.jooq.QueryPart; -import org.jooq.SQL; -import org.jooq.Schema; -import org.jooq.Select; -import org.jooq.Stringly; -import org.jooq.Table; -import org.jooq.TableField; -import org.jooq.TableOptions; -import org.jooq.UniqueKey; -import org.jooq.impl.DSL; -import org.jooq.impl.SQLDataType; -import org.jooq.impl.TableImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrRecurringJobs extends TableImpl { - - private static final long serialVersionUID = 1L; - - /** - * The reference instance of public.jobrunr_recurring_jobs - */ - public static final JobrunrRecurringJobs JOBRUNR_RECURRING_JOBS = new JobrunrRecurringJobs(); - - /** - * The class holding records for this type - */ - @Override - public Class getRecordType() { - return JobrunrRecurringJobsRecord.class; - } - - /** - * The column public.jobrunr_recurring_jobs.id. - */ - public final TableField ID = createField(DSL.name("id"), SQLDataType.CHAR(128).nullable(false), this, ""); - - /** - * The column public.jobrunr_recurring_jobs.version. - */ - public final TableField VERSION = createField(DSL.name("version"), SQLDataType.INTEGER.nullable(false), this, ""); - - /** - * The column public.jobrunr_recurring_jobs.jobasjson. - */ - public final TableField JOBASJSON = createField(DSL.name("jobasjson"), SQLDataType.CLOB.nullable(false), this, ""); - - /** - * The column public.jobrunr_recurring_jobs.createdat. - */ - public final TableField CREATEDAT = createField(DSL.name("createdat"), SQLDataType.BIGINT.nullable(false).defaultValue(DSL.field(DSL.raw("'0'::bigint"), SQLDataType.BIGINT)), this, ""); - - private JobrunrRecurringJobs(Name alias, Table aliased) { - this(alias, aliased, (Field[]) null, null); - } - - private JobrunrRecurringJobs(Name alias, Table aliased, Field[] parameters, Condition where) { - super(alias, null, aliased, parameters, DSL.comment(""), TableOptions.table(), where); - } - - /** - * Create an aliased public.jobrunr_recurring_jobs table - * reference - */ - public JobrunrRecurringJobs(String alias) { - this(DSL.name(alias), JOBRUNR_RECURRING_JOBS); - } - - /** - * Create an aliased public.jobrunr_recurring_jobs table - * reference - */ - public JobrunrRecurringJobs(Name alias) { - this(alias, JOBRUNR_RECURRING_JOBS); - } - - /** - * Create a public.jobrunr_recurring_jobs table reference - */ - public JobrunrRecurringJobs() { - this(DSL.name("jobrunr_recurring_jobs"), null); - } - - @Override - public Schema getSchema() { - return aliased() ? null : Public.PUBLIC; - } - - @Override - public List getIndexes() { - return Arrays.asList(Indexes.JOBRUNR_RECURRING_JOB_CREATED_AT_IDX); - } - - @Override - public UniqueKey getPrimaryKey() { - return Keys.JOBRUNR_RECURRING_JOBS_PKEY; - } - - @Override - public JobrunrRecurringJobs as(String alias) { - return new JobrunrRecurringJobs(DSL.name(alias), this); - } - - @Override - public JobrunrRecurringJobs as(Name alias) { - return new JobrunrRecurringJobs(alias, this); - } - - @Override - public JobrunrRecurringJobs as(Table alias) { - return new JobrunrRecurringJobs(alias.getQualifiedName(), this); - } - - /** - * Rename this table - */ - @Override - public JobrunrRecurringJobs rename(String name) { - return new JobrunrRecurringJobs(DSL.name(name), null); - } - - /** - * Rename this table - */ - @Override - public JobrunrRecurringJobs rename(Name name) { - return new JobrunrRecurringJobs(name, null); - } - - /** - * Rename this table - */ - @Override - public JobrunrRecurringJobs rename(Table name) { - return new JobrunrRecurringJobs(name.getQualifiedName(), null); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs where(Condition condition) { - return new JobrunrRecurringJobs(getQualifiedName(), aliased() ? this : null, null, condition); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs where(Collection conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs where(Condition... conditions) { - return where(DSL.and(conditions)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs where(Field condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrRecurringJobs where(SQL condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrRecurringJobs where(@Stringly.SQL String condition) { - return where(DSL.condition(condition)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrRecurringJobs where(@Stringly.SQL String condition, Object... binds) { - return where(DSL.condition(condition, binds)); - } - - /** - * Create an inline derived table from this table - */ - @Override - @PlainSQL - public JobrunrRecurringJobs where(@Stringly.SQL String condition, QueryPart... parts) { - return where(DSL.condition(condition, parts)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs whereExists(Select select) { - return where(DSL.exists(select)); - } - - /** - * Create an inline derived table from this table - */ - @Override - public JobrunrRecurringJobs whereNotExists(Select select) { - return where(DSL.notExists(select)); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrBackgroundjobserversRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrBackgroundjobserversRecord.java deleted file mode 100644 index 789b128b9..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrBackgroundjobserversRecord.java +++ /dev/null @@ -1,317 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import java.math.BigDecimal; -import java.time.LocalDateTime; - -import org.eclipse.openvsx.jooq.tables.JobrunrBackgroundjobservers; -import org.jooq.Record1; -import org.jooq.impl.UpdatableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrBackgroundjobserversRecord extends UpdatableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_backgroundjobservers.id. - */ - public void setId(String value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_backgroundjobservers.id. - */ - public String getId() { - return (String) get(0); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.workerpoolsize. - */ - public void setWorkerpoolsize(Integer value) { - set(1, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.workerpoolsize. - */ - public Integer getWorkerpoolsize() { - return (Integer) get(1); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.pollintervalinseconds. - */ - public void setPollintervalinseconds(Integer value) { - set(2, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.pollintervalinseconds. - */ - public Integer getPollintervalinseconds() { - return (Integer) get(2); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.firstheartbeat. - */ - public void setFirstheartbeat(LocalDateTime value) { - set(3, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.firstheartbeat. - */ - public LocalDateTime getFirstheartbeat() { - return (LocalDateTime) get(3); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.lastheartbeat. - */ - public void setLastheartbeat(LocalDateTime value) { - set(4, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.lastheartbeat. - */ - public LocalDateTime getLastheartbeat() { - return (LocalDateTime) get(4); - } - - /** - * Setter for public.jobrunr_backgroundjobservers.running. - */ - public void setRunning(Integer value) { - set(5, value); - } - - /** - * Getter for public.jobrunr_backgroundjobservers.running. - */ - public Integer getRunning() { - return (Integer) get(5); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.systemtotalmemory. - */ - public void setSystemtotalmemory(Long value) { - set(6, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.systemtotalmemory. - */ - public Long getSystemtotalmemory() { - return (Long) get(6); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.systemfreememory. - */ - public void setSystemfreememory(Long value) { - set(7, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.systemfreememory. - */ - public Long getSystemfreememory() { - return (Long) get(7); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.systemcpuload. - */ - public void setSystemcpuload(BigDecimal value) { - set(8, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.systemcpuload. - */ - public BigDecimal getSystemcpuload() { - return (BigDecimal) get(8); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.processmaxmemory. - */ - public void setProcessmaxmemory(Long value) { - set(9, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.processmaxmemory. - */ - public Long getProcessmaxmemory() { - return (Long) get(9); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.processfreememory. - */ - public void setProcessfreememory(Long value) { - set(10, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.processfreememory. - */ - public Long getProcessfreememory() { - return (Long) get(10); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.processallocatedmemory. - */ - public void setProcessallocatedmemory(Long value) { - set(11, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.processallocatedmemory. - */ - public Long getProcessallocatedmemory() { - return (Long) get(11); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.processcpuload. - */ - public void setProcesscpuload(BigDecimal value) { - set(12, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.processcpuload. - */ - public BigDecimal getProcesscpuload() { - return (BigDecimal) get(12); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.deletesucceededjobsafter. - */ - public void setDeletesucceededjobsafter(String value) { - set(13, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.deletesucceededjobsafter. - */ - public String getDeletesucceededjobsafter() { - return (String) get(13); - } - - /** - * Setter for - * public.jobrunr_backgroundjobservers.permanentlydeletejobsafter. - */ - public void setPermanentlydeletejobsafter(String value) { - set(14, value); - } - - /** - * Getter for - * public.jobrunr_backgroundjobservers.permanentlydeletejobsafter. - */ - public String getPermanentlydeletejobsafter() { - return (String) get(14); - } - - /** - * Setter for public.jobrunr_backgroundjobservers.name. - */ - public void setName(String value) { - set(15, value); - } - - /** - * Getter for public.jobrunr_backgroundjobservers.name. - */ - public String getName() { - return (String) get(15); - } - - // ------------------------------------------------------------------------- - // Primary key information - // ------------------------------------------------------------------------- - - @Override - public Record1 key() { - return (Record1) super.key(); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrBackgroundjobserversRecord - */ - public JobrunrBackgroundjobserversRecord() { - super(JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS); - } - - /** - * Create a detached, initialised JobrunrBackgroundjobserversRecord - */ - public JobrunrBackgroundjobserversRecord(String id, Integer workerpoolsize, Integer pollintervalinseconds, LocalDateTime firstheartbeat, LocalDateTime lastheartbeat, Integer running, Long systemtotalmemory, Long systemfreememory, BigDecimal systemcpuload, Long processmaxmemory, Long processfreememory, Long processallocatedmemory, BigDecimal processcpuload, String deletesucceededjobsafter, String permanentlydeletejobsafter, String name) { - super(JobrunrBackgroundjobservers.JOBRUNR_BACKGROUNDJOBSERVERS); - - setId(id); - setWorkerpoolsize(workerpoolsize); - setPollintervalinseconds(pollintervalinseconds); - setFirstheartbeat(firstheartbeat); - setLastheartbeat(lastheartbeat); - setRunning(running); - setSystemtotalmemory(systemtotalmemory); - setSystemfreememory(systemfreememory); - setSystemcpuload(systemcpuload); - setProcessmaxmemory(processmaxmemory); - setProcessfreememory(processfreememory); - setProcessallocatedmemory(processallocatedmemory); - setProcesscpuload(processcpuload); - setDeletesucceededjobsafter(deletesucceededjobsafter); - setPermanentlydeletejobsafter(permanentlydeletejobsafter); - setName(name); - resetChangedOnNotNull(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsRecord.java deleted file mode 100644 index 35b86e11a..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsRecord.java +++ /dev/null @@ -1,185 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import java.time.LocalDateTime; - -import org.eclipse.openvsx.jooq.tables.JobrunrJobs; -import org.jooq.Record1; -import org.jooq.impl.UpdatableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrJobsRecord extends UpdatableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_jobs.id. - */ - public void setId(String value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_jobs.id. - */ - public String getId() { - return (String) get(0); - } - - /** - * Setter for public.jobrunr_jobs.version. - */ - public void setVersion(Integer value) { - set(1, value); - } - - /** - * Getter for public.jobrunr_jobs.version. - */ - public Integer getVersion() { - return (Integer) get(1); - } - - /** - * Setter for public.jobrunr_jobs.jobasjson. - */ - public void setJobasjson(String value) { - set(2, value); - } - - /** - * Getter for public.jobrunr_jobs.jobasjson. - */ - public String getJobasjson() { - return (String) get(2); - } - - /** - * Setter for public.jobrunr_jobs.jobsignature. - */ - public void setJobsignature(String value) { - set(3, value); - } - - /** - * Getter for public.jobrunr_jobs.jobsignature. - */ - public String getJobsignature() { - return (String) get(3); - } - - /** - * Setter for public.jobrunr_jobs.state. - */ - public void setState(String value) { - set(4, value); - } - - /** - * Getter for public.jobrunr_jobs.state. - */ - public String getState() { - return (String) get(4); - } - - /** - * Setter for public.jobrunr_jobs.createdat. - */ - public void setCreatedat(LocalDateTime value) { - set(5, value); - } - - /** - * Getter for public.jobrunr_jobs.createdat. - */ - public LocalDateTime getCreatedat() { - return (LocalDateTime) get(5); - } - - /** - * Setter for public.jobrunr_jobs.updatedat. - */ - public void setUpdatedat(LocalDateTime value) { - set(6, value); - } - - /** - * Getter for public.jobrunr_jobs.updatedat. - */ - public LocalDateTime getUpdatedat() { - return (LocalDateTime) get(6); - } - - /** - * Setter for public.jobrunr_jobs.scheduledat. - */ - public void setScheduledat(LocalDateTime value) { - set(7, value); - } - - /** - * Getter for public.jobrunr_jobs.scheduledat. - */ - public LocalDateTime getScheduledat() { - return (LocalDateTime) get(7); - } - - /** - * Setter for public.jobrunr_jobs.recurringjobid. - */ - public void setRecurringjobid(String value) { - set(8, value); - } - - /** - * Getter for public.jobrunr_jobs.recurringjobid. - */ - public String getRecurringjobid() { - return (String) get(8); - } - - // ------------------------------------------------------------------------- - // Primary key information - // ------------------------------------------------------------------------- - - @Override - public Record1 key() { - return (Record1) super.key(); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrJobsRecord - */ - public JobrunrJobsRecord() { - super(JobrunrJobs.JOBRUNR_JOBS); - } - - /** - * Create a detached, initialised JobrunrJobsRecord - */ - public JobrunrJobsRecord(String id, Integer version, String jobasjson, String jobsignature, String state, LocalDateTime createdat, LocalDateTime updatedat, LocalDateTime scheduledat, String recurringjobid) { - super(JobrunrJobs.JOBRUNR_JOBS); - - setId(id); - setVersion(version); - setJobasjson(jobasjson); - setJobsignature(jobsignature); - setState(state); - setCreatedat(createdat); - setUpdatedat(updatedat); - setScheduledat(scheduledat); - setRecurringjobid(recurringjobid); - resetChangedOnNotNull(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsStatsRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsStatsRecord.java deleted file mode 100644 index 0c6f388e3..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrJobsStatsRecord.java +++ /dev/null @@ -1,192 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import java.math.BigDecimal; - -import org.eclipse.openvsx.jooq.tables.JobrunrJobsStats; -import org.jooq.impl.TableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrJobsStatsRecord extends TableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_jobs_stats.total. - */ - public void setTotal(Long value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.total. - */ - public Long getTotal() { - return (Long) get(0); - } - - /** - * Setter for public.jobrunr_jobs_stats.scheduled. - */ - public void setScheduled(Long value) { - set(1, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.scheduled. - */ - public Long getScheduled() { - return (Long) get(1); - } - - /** - * Setter for public.jobrunr_jobs_stats.enqueued. - */ - public void setEnqueued(Long value) { - set(2, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.enqueued. - */ - public Long getEnqueued() { - return (Long) get(2); - } - - /** - * Setter for public.jobrunr_jobs_stats.processing. - */ - public void setProcessing(Long value) { - set(3, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.processing. - */ - public Long getProcessing() { - return (Long) get(3); - } - - /** - * Setter for public.jobrunr_jobs_stats.failed. - */ - public void setFailed(Long value) { - set(4, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.failed. - */ - public Long getFailed() { - return (Long) get(4); - } - - /** - * Setter for public.jobrunr_jobs_stats.succeeded. - */ - public void setSucceeded(Long value) { - set(5, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.succeeded. - */ - public Long getSucceeded() { - return (Long) get(5); - } - - /** - * Setter for public.jobrunr_jobs_stats.alltimesucceeded. - */ - public void setAlltimesucceeded(BigDecimal value) { - set(6, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.alltimesucceeded. - */ - public BigDecimal getAlltimesucceeded() { - return (BigDecimal) get(6); - } - - /** - * Setter for public.jobrunr_jobs_stats.deleted. - */ - public void setDeleted(Long value) { - set(7, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.deleted. - */ - public Long getDeleted() { - return (Long) get(7); - } - - /** - * Setter for - * public.jobrunr_jobs_stats.nbrofbackgroundjobservers. - */ - public void setNbrofbackgroundjobservers(Long value) { - set(8, value); - } - - /** - * Getter for - * public.jobrunr_jobs_stats.nbrofbackgroundjobservers. - */ - public Long getNbrofbackgroundjobservers() { - return (Long) get(8); - } - - /** - * Setter for public.jobrunr_jobs_stats.nbrofrecurringjobs. - */ - public void setNbrofrecurringjobs(Long value) { - set(9, value); - } - - /** - * Getter for public.jobrunr_jobs_stats.nbrofrecurringjobs. - */ - public Long getNbrofrecurringjobs() { - return (Long) get(9); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrJobsStatsRecord - */ - public JobrunrJobsStatsRecord() { - super(JobrunrJobsStats.JOBRUNR_JOBS_STATS); - } - - /** - * Create a detached, initialised JobrunrJobsStatsRecord - */ - public JobrunrJobsStatsRecord(Long total, Long scheduled, Long enqueued, Long processing, Long failed, Long succeeded, BigDecimal alltimesucceeded, Long deleted, Long nbrofbackgroundjobservers, Long nbrofrecurringjobs) { - super(JobrunrJobsStats.JOBRUNR_JOBS_STATS); - - setTotal(total); - setScheduled(scheduled); - setEnqueued(enqueued); - setProcessing(processing); - setFailed(failed); - setSucceeded(succeeded); - setAlltimesucceeded(alltimesucceeded); - setDeleted(deleted); - setNbrofbackgroundjobservers(nbrofbackgroundjobservers); - setNbrofrecurringjobs(nbrofrecurringjobs); - resetChangedOnNotNull(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMetadataRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMetadataRecord.java deleted file mode 100644 index 3d37b7914..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMetadataRecord.java +++ /dev/null @@ -1,140 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import java.time.LocalDateTime; - -import org.eclipse.openvsx.jooq.tables.JobrunrMetadata; -import org.jooq.Record1; -import org.jooq.impl.UpdatableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrMetadataRecord extends UpdatableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_metadata.id. - */ - public void setId(String value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_metadata.id. - */ - public String getId() { - return (String) get(0); - } - - /** - * Setter for public.jobrunr_metadata.name. - */ - public void setName(String value) { - set(1, value); - } - - /** - * Getter for public.jobrunr_metadata.name. - */ - public String getName() { - return (String) get(1); - } - - /** - * Setter for public.jobrunr_metadata.owner. - */ - public void setOwner(String value) { - set(2, value); - } - - /** - * Getter for public.jobrunr_metadata.owner. - */ - public String getOwner() { - return (String) get(2); - } - - /** - * Setter for public.jobrunr_metadata.value. - */ - public void setValue(String value) { - set(3, value); - } - - /** - * Getter for public.jobrunr_metadata.value. - */ - public String getValue() { - return (String) get(3); - } - - /** - * Setter for public.jobrunr_metadata.createdat. - */ - public void setCreatedat(LocalDateTime value) { - set(4, value); - } - - /** - * Getter for public.jobrunr_metadata.createdat. - */ - public LocalDateTime getCreatedat() { - return (LocalDateTime) get(4); - } - - /** - * Setter for public.jobrunr_metadata.updatedat. - */ - public void setUpdatedat(LocalDateTime value) { - set(5, value); - } - - /** - * Getter for public.jobrunr_metadata.updatedat. - */ - public LocalDateTime getUpdatedat() { - return (LocalDateTime) get(5); - } - - // ------------------------------------------------------------------------- - // Primary key information - // ------------------------------------------------------------------------- - - @Override - public Record1 key() { - return (Record1) super.key(); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrMetadataRecord - */ - public JobrunrMetadataRecord() { - super(JobrunrMetadata.JOBRUNR_METADATA); - } - - /** - * Create a detached, initialised JobrunrMetadataRecord - */ - public JobrunrMetadataRecord(String id, String name, String owner, String value, LocalDateTime createdat, LocalDateTime updatedat) { - super(JobrunrMetadata.JOBRUNR_METADATA); - - setId(id); - setName(name); - setOwner(owner); - setValue(value); - setCreatedat(createdat); - setUpdatedat(updatedat); - resetChangedOnNotNull(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMigrationsRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMigrationsRecord.java deleted file mode 100644 index e9c28c41d..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrMigrationsRecord.java +++ /dev/null @@ -1,93 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import org.eclipse.openvsx.jooq.tables.JobrunrMigrations; -import org.jooq.Record1; -import org.jooq.impl.UpdatableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrMigrationsRecord extends UpdatableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_migrations.id. - */ - public void setId(String value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_migrations.id. - */ - public String getId() { - return (String) get(0); - } - - /** - * Setter for public.jobrunr_migrations.script. - */ - public void setScript(String value) { - set(1, value); - } - - /** - * Getter for public.jobrunr_migrations.script. - */ - public String getScript() { - return (String) get(1); - } - - /** - * Setter for public.jobrunr_migrations.installedon. - */ - public void setInstalledon(String value) { - set(2, value); - } - - /** - * Getter for public.jobrunr_migrations.installedon. - */ - public String getInstalledon() { - return (String) get(2); - } - - // ------------------------------------------------------------------------- - // Primary key information - // ------------------------------------------------------------------------- - - @Override - public Record1 key() { - return (Record1) super.key(); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrMigrationsRecord - */ - public JobrunrMigrationsRecord() { - super(JobrunrMigrations.JOBRUNR_MIGRATIONS); - } - - /** - * Create a detached, initialised JobrunrMigrationsRecord - */ - public JobrunrMigrationsRecord(String id, String script, String installedon) { - super(JobrunrMigrations.JOBRUNR_MIGRATIONS); - - setId(id); - setScript(script); - setInstalledon(installedon); - resetChangedOnNotNull(); - } -} diff --git a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrRecurringJobsRecord.java b/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrRecurringJobsRecord.java deleted file mode 100644 index 72640c92a..000000000 --- a/server/src/main/jooq-gen/org/eclipse/openvsx/jooq/tables/records/JobrunrRecurringJobsRecord.java +++ /dev/null @@ -1,108 +0,0 @@ -/* - * This file is generated by jOOQ. - */ -package org.eclipse.openvsx.jooq.tables.records; - - -import org.eclipse.openvsx.jooq.tables.JobrunrRecurringJobs; -import org.jooq.Record1; -import org.jooq.impl.UpdatableRecordImpl; - - -/** - * This class is generated by jOOQ. - */ -@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" }) -public class JobrunrRecurringJobsRecord extends UpdatableRecordImpl { - - private static final long serialVersionUID = 1L; - - /** - * Setter for public.jobrunr_recurring_jobs.id. - */ - public void setId(String value) { - set(0, value); - } - - /** - * Getter for public.jobrunr_recurring_jobs.id. - */ - public String getId() { - return (String) get(0); - } - - /** - * Setter for public.jobrunr_recurring_jobs.version. - */ - public void setVersion(Integer value) { - set(1, value); - } - - /** - * Getter for public.jobrunr_recurring_jobs.version. - */ - public Integer getVersion() { - return (Integer) get(1); - } - - /** - * Setter for public.jobrunr_recurring_jobs.jobasjson. - */ - public void setJobasjson(String value) { - set(2, value); - } - - /** - * Getter for public.jobrunr_recurring_jobs.jobasjson. - */ - public String getJobasjson() { - return (String) get(2); - } - - /** - * Setter for public.jobrunr_recurring_jobs.createdat. - */ - public void setCreatedat(Long value) { - set(3, value); - } - - /** - * Getter for public.jobrunr_recurring_jobs.createdat. - */ - public Long getCreatedat() { - return (Long) get(3); - } - - // ------------------------------------------------------------------------- - // Primary key information - // ------------------------------------------------------------------------- - - @Override - public Record1 key() { - return (Record1) super.key(); - } - - // ------------------------------------------------------------------------- - // Constructors - // ------------------------------------------------------------------------- - - /** - * Create a detached JobrunrRecurringJobsRecord - */ - public JobrunrRecurringJobsRecord() { - super(JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS); - } - - /** - * Create a detached, initialised JobrunrRecurringJobsRecord - */ - public JobrunrRecurringJobsRecord(String id, Integer version, String jobasjson, Long createdat) { - super(JobrunrRecurringJobs.JOBRUNR_RECURRING_JOBS); - - setId(id); - setVersion(version); - setJobasjson(jobasjson); - setCreatedat(createdat); - resetChangedOnNotNull(); - } -}