org.apache.camel.component.jooq.db.Tables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camel-jooq Show documentation
Show all versions of camel-jooq Show documentation
The jooq component enables you to store and retrieve entities from databases using JOOQ
The newest version!
/*
* This file is generated by jOOQ.
*/
package org.apache.camel.component.jooq.db;
import org.apache.camel.component.jooq.db.tables.Author;
import org.apache.camel.component.jooq.db.tables.Book;
import org.apache.camel.component.jooq.db.tables.BookStore;
import org.apache.camel.component.jooq.db.tables.BookToBookStore;
/**
* Convenience access to all tables in PUBLIC.
*/
@SuppressWarnings({ "all", "unchecked", "rawtypes", "this-escape" })
public class Tables {
/**
* The table PUBLIC.AUTHOR
.
*/
public static final Author AUTHOR = Author.AUTHOR;
/**
* The table PUBLIC.BOOK
.
*/
public static final Book BOOK = Book.BOOK;
/**
* The table PUBLIC.BOOK_STORE
.
*/
public static final BookStore BOOK_STORE = BookStore.BOOK_STORE;
/**
* The table PUBLIC.BOOK_TO_BOOK_STORE
.
*/
public static final BookToBookStore BOOK_TO_BOOK_STORE = BookToBookStore.BOOK_TO_BOOK_STORE;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy