main.app.cash.backfila.client.jooq.gen.Jooq.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of client-jooq Show documentation
Show all versions of client-jooq Show documentation
Backfila is a service that manages backfill state, calling into other services to do batched work.
/*
* This file is generated by jOOQ.
*/
package app.cash.backfila.client.jooq.gen
import app.cash.backfila.client.jooq.gen.tables.Menu
import app.cash.backfila.client.jooq.gen.tables.Widgets
import kotlin.collections.List
import org.jooq.Catalog
import org.jooq.Table
import org.jooq.impl.SchemaImpl
/**
* This class is generated by jOOQ.
*/
@Suppress("UNCHECKED_CAST")
open class Jooq : SchemaImpl("jooq", DefaultCatalog.DEFAULT_CATALOG) {
public companion object {
/**
* The reference instance of jooq
*/
val JOOQ: Jooq = Jooq()
}
/**
* The table jooq.menu
.
*/
val MENU: Menu get() = Menu.MENU
/**
* The table jooq.widgets
.
*/
val WIDGETS: Widgets get() = Widgets.WIDGETS
override fun getCatalog(): Catalog = DefaultCatalog.DEFAULT_CATALOG
override fun getTables(): List> = listOf(
Menu.MENU,
Widgets.WIDGETS,
)
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy