diff --git a/jOOQ-test/configuration/org/jooq/configuration/lukas/oracle/library.xml b/jOOQ-test/configuration/org/jooq/configuration/lukas/oracle/library.xml index 298081fa64..d59822212e 100644 --- a/jOOQ-test/configuration/org/jooq/configuration/lukas/oracle/library.xml +++ b/jOOQ-test/configuration/org/jooq/configuration/lukas/oracle/library.xml @@ -120,6 +120,8 @@ true true false + true + true org.jooq.test.oracle.generatedclasses diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TAuthor.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TAuthor.java new file mode 100644 index 0000000000..47fd094810 --- /dev/null +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TAuthor.java @@ -0,0 +1,76 @@ +/** + * This class is generated by jOOQ + */ +package org.jooq.test.oracle.generatedclasses.multi_schema.tables.pojos; + +/** + * This class is generated by jOOQ. + */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_AUTHOR", schema = "MULTI_SCHEMA") +public class TAuthor implements java.io.Serializable { + + private static final long serialVersionUID = 2090072774; + + private java.lang.Integer id; + private java.lang.String firstName; + private java.lang.String lastName; + private java.sql.Date dateOfBirth; + private java.lang.Integer yearOfBirth; + private java.lang.Object address; + + @javax.persistence.Id + @javax.persistence.Column(name = "ID", unique = true) + public java.lang.Integer getId() { + return this.id; + } + + public void setId(java.lang.Integer id) { + this.id = id; + } + + @javax.persistence.Column(name = "FIRST_NAME") + public java.lang.String getFirstName() { + return this.firstName; + } + + public void setFirstName(java.lang.String firstName) { + this.firstName = firstName; + } + + @javax.persistence.Column(name = "LAST_NAME") + public java.lang.String getLastName() { + return this.lastName; + } + + public void setLastName(java.lang.String lastName) { + this.lastName = lastName; + } + + @javax.persistence.Column(name = "DATE_OF_BIRTH") + public java.sql.Date getDateOfBirth() { + return this.dateOfBirth; + } + + public void setDateOfBirth(java.sql.Date dateOfBirth) { + this.dateOfBirth = dateOfBirth; + } + + @javax.persistence.Column(name = "YEAR_OF_BIRTH") + public java.lang.Integer getYearOfBirth() { + return this.yearOfBirth; + } + + public void setYearOfBirth(java.lang.Integer yearOfBirth) { + this.yearOfBirth = yearOfBirth; + } + + @javax.persistence.Column(name = "ADDRESS") + public java.lang.Object getAddress() { + return this.address; + } + + public void setAddress(java.lang.Object address) { + this.address = address; + } +} diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBook.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBook.java new file mode 100644 index 0000000000..9fca5db9f5 --- /dev/null +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBook.java @@ -0,0 +1,106 @@ +/** + * This class is generated by jOOQ + */ +package org.jooq.test.oracle.generatedclasses.multi_schema.tables.pojos; + +/** + * This class is generated by jOOQ. + */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_BOOK", schema = "MULTI_SCHEMA") +public class TBook implements java.io.Serializable { + + private static final long serialVersionUID = -1817499674; + + private java.lang.Integer id; + private java.lang.Integer authorId; + private java.lang.Integer coAuthorId; + private java.lang.Integer detailsId; + private java.lang.String title; + private java.lang.Integer publishedIn; + private org.jooq.test.oracle.generatedclasses.test.enums.TLanguage languageId; + private java.lang.String contentText; + private byte[] contentPdf; + + @javax.persistence.Id + @javax.persistence.Column(name = "ID", unique = true) + public java.lang.Integer getId() { + return this.id; + } + + public void setId(java.lang.Integer id) { + this.id = id; + } + + @javax.persistence.Column(name = "AUTHOR_ID") + public java.lang.Integer getAuthorId() { + return this.authorId; + } + + public void setAuthorId(java.lang.Integer authorId) { + this.authorId = authorId; + } + + @javax.persistence.Column(name = "CO_AUTHOR_ID") + public java.lang.Integer getCoAuthorId() { + return this.coAuthorId; + } + + public void setCoAuthorId(java.lang.Integer coAuthorId) { + this.coAuthorId = coAuthorId; + } + + @javax.persistence.Column(name = "DETAILS_ID") + public java.lang.Integer getDetailsId() { + return this.detailsId; + } + + public void setDetailsId(java.lang.Integer detailsId) { + this.detailsId = detailsId; + } + + @javax.persistence.Column(name = "TITLE") + public java.lang.String getTitle() { + return this.title; + } + + public void setTitle(java.lang.String title) { + this.title = title; + } + + @javax.persistence.Column(name = "PUBLISHED_IN") + public java.lang.Integer getPublishedIn() { + return this.publishedIn; + } + + public void setPublishedIn(java.lang.Integer publishedIn) { + this.publishedIn = publishedIn; + } + + @javax.persistence.Column(name = "LANGUAGE_ID") + public org.jooq.test.oracle.generatedclasses.test.enums.TLanguage getLanguageId() { + return this.languageId; + } + + public void setLanguageId(org.jooq.test.oracle.generatedclasses.test.enums.TLanguage languageId) { + this.languageId = languageId; + } + + @javax.persistence.Column(name = "CONTENT_TEXT") + public java.lang.String getContentText() { + return this.contentText; + } + + public void setContentText(java.lang.String contentText) { + this.contentText = contentText; + } + + @javax.persistence.Column(name = "CONTENT_PDF") + public byte[] getContentPdf() { + return this.contentPdf; + } + + public void setContentPdf(byte[] contentPdf) { + this.contentPdf = contentPdf; + } +} diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBookSale.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBookSale.java new file mode 100644 index 0000000000..48d2fb4e6f --- /dev/null +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/pojos/TBookSale.java @@ -0,0 +1,66 @@ +/** + * This class is generated by jOOQ + */ +package org.jooq.test.oracle.generatedclasses.multi_schema.tables.pojos; + +/** + * This class is generated by jOOQ. + */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_BOOK_SALE", schema = "MULTI_SCHEMA") +public class TBookSale implements java.io.Serializable { + + private static final long serialVersionUID = -972600460; + + private java.lang.Integer id; + private java.lang.Integer bookId; + private java.lang.String bookStoreName; + private java.sql.Date soldAt; + private java.math.BigDecimal soldFor; + + @javax.persistence.Id + @javax.persistence.Column(name = "ID", unique = true) + public java.lang.Integer getId() { + return this.id; + } + + public void setId(java.lang.Integer id) { + this.id = id; + } + + @javax.persistence.Column(name = "BOOK_ID") + public java.lang.Integer getBookId() { + return this.bookId; + } + + public void setBookId(java.lang.Integer bookId) { + this.bookId = bookId; + } + + @javax.persistence.Column(name = "BOOK_STORE_NAME") + public java.lang.String getBookStoreName() { + return this.bookStoreName; + } + + public void setBookStoreName(java.lang.String bookStoreName) { + this.bookStoreName = bookStoreName; + } + + @javax.persistence.Column(name = "SOLD_AT") + public java.sql.Date getSoldAt() { + return this.soldAt; + } + + public void setSoldAt(java.sql.Date soldAt) { + this.soldAt = soldAt; + } + + @javax.persistence.Column(name = "SOLD_FOR") + public java.math.BigDecimal getSoldFor() { + return this.soldFor; + } + + public void setSoldFor(java.math.BigDecimal soldFor) { + this.soldFor = soldFor; + } +} diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TAuthorRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TAuthorRecord.java index 09663cba0a..f33615f1fb 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TAuthorRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TAuthorRecord.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_AUTHOR", schema = "MULTI_SCHEMA") public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1384020730; + private static final long serialVersionUID = 1182084110; /** * An uncommented item @@ -24,6 +26,8 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "ADDRESS") public java.lang.Object getAddress() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TAuthor.T_AUTHOR.ADDRESS); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TBookRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TBookRecord.java index 1963d1a0ae..1bd1514620 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TBookRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/multi_schema/tables/records/TBookRecord.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.multi_schema.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_BOOK", schema = "MULTI_SCHEMA") public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2073539442; + private static final long serialVersionUID = -717516514; /** * An uncommented item @@ -24,6 +26,8 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "AUTHOR_ID") public java.lang.Integer getAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.AUTHOR_ID); } @@ -92,6 +97,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "CO_AUTHOR_ID") public java.lang.Integer getCoAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.CO_AUTHOR_ID); } @@ -122,6 +128,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "LANGUAGE_ID") public org.jooq.test.oracle.generatedclasses.test.enums.TLanguage getLanguageId() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBook.T_BOOK.LANGUAGE_ID); } @@ -190,6 +200,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 439553191; + private static final long serialVersionUID = 1301568703; /** * An uncommented item @@ -24,6 +26,8 @@ public class TBookSaleRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "BOOK_ID") public java.lang.Integer getBookId() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBookSale.T_BOOK_SALE.BOOK_ID); } @@ -93,6 +98,7 @@ public class TBookSaleRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "BOOK_STORE_NAME") public java.lang.String getBookStoreName() { return getValue(org.jooq.test.oracle.generatedclasses.multi_schema.tables.TBookSale.T_BOOK_SALE.BOOK_STORE_NAME); } @@ -107,6 +113,7 @@ public class TBookSaleRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2049861720; + private static final long serialVersionUID = -1311793694; /** * An uncommented item @@ -24,6 +26,8 @@ public class TArraysRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1395933321; + private static final long serialVersionUID = -307966792; /** * The author ID @@ -26,6 +28,8 @@ public class TAuthorRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -296790288; + private static final long serialVersionUID = -777564483; /** * The book ID @@ -26,6 +28,8 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "AUTHOR_ID") public java.lang.Integer getAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.AUTHOR_ID); } @@ -106,6 +111,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "CO_AUTHOR_ID") public java.lang.Integer getCoAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.CO_AUTHOR_ID); } @@ -136,6 +142,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "LANGUAGE_ID") public org.jooq.test.oracle.generatedclasses.test.enums.TLanguage getLanguageId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBook.T_BOOK.LANGUAGE_ID); } @@ -204,6 +214,7 @@ public class TBookRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 112711967; + private static final long serialVersionUID = 1164792621; /** * The books store name @@ -22,6 +24,7 @@ public class TBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 156801511; + private static final long serialVersionUID = -1226043006; /** * The book store name @@ -38,6 +42,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "BOOK_STORE_NAME") public java.lang.String getBookStoreName() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_STORE_NAME); } @@ -105,6 +110,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "BOOK_ID") public java.lang.Integer getBookId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TBookToBookStore.T_BOOK_TO_BOOK_STORE.BOOK_ID); } @@ -137,6 +143,7 @@ public class TBookToBookStoreRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1973286582; + private static final long serialVersionUID = 1302763064; /** * An uncommented item @@ -24,6 +26,8 @@ public class TBooleansRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2123150840; + private static final long serialVersionUID = 1364572252; /** * An uncommented item @@ -24,6 +26,8 @@ public class TDatesRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 440028521; + private static final long serialVersionUID = -1533470252; /** * An uncommented item @@ -24,6 +26,8 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "PARENT_ID") public java.lang.Integer getParentId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.TDirectory.T_DIRECTORY.PARENT_ID); } @@ -92,6 +97,7 @@ public class TDirectoryRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1567554952; + private static final long serialVersionUID = 579771304; /** * An uncommented item @@ -24,6 +26,8 @@ public class TTriggersRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1188359471; + private static final long serialVersionUID = -230502624; /** * An uncommented item @@ -24,6 +26,8 @@ public class T_639NumbersTableRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 1990827182; + private static final long serialVersionUID = 884202937; /** * An uncommented item @@ -32,6 +34,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_11") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_11 getRef_11() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_11); } @@ -58,6 +61,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_21") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_21 getRef_21() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_21); } @@ -84,6 +88,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_31") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_31 getRef_31() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_31); } @@ -110,6 +115,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_12") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_12 getRef_12() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_12); } @@ -136,6 +142,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_22") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_22 getRef_22() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_22); } @@ -162,6 +169,7 @@ public class T_658RefRecord extends org.jooq.impl.TableRecordImpl */ + @javax.persistence.Column(name = "REF_32") public org.jooq.test.oracle.generatedclasses.test.enums.T_658_32 getRef_32() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.T_658Ref.T_658_REF.REF_32); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/T_725LobTestRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/T_725LobTestRecord.java index e997ff66b6..14b2e18974 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/T_725LobTestRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/T_725LobTestRecord.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "T_725_LOB_TEST", schema = "TEST") public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 2025558529; + private static final long serialVersionUID = 1430845072; /** * An uncommented item @@ -24,6 +26,8 @@ public class T_725LobTestRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = 53882845; + private static final long serialVersionUID = 1652388604; /** * An uncommented item @@ -20,6 +22,7 @@ public class T_785Record extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -263841920; + private static final long serialVersionUID = 510968114; /** * An uncommented item @@ -20,6 +22,7 @@ public class VAuthorRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 2068835626; + private static final long serialVersionUID = -1563723032; /** * An uncommented item @@ -20,6 +22,7 @@ public class VBookRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1048612640; + private static final long serialVersionUID = -1291458455; /** * An uncommented item @@ -26,6 +28,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "ID") public java.lang.Object getId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.ID); } @@ -46,6 +49,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "AUTHOR_ID") public java.lang.Object getAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.AUTHOR_ID); } @@ -66,6 +70,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "CO_AUTHOR_ID") public java.lang.Object getCoAuthorId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.CO_AUTHOR_ID); } @@ -86,6 +91,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "DETAILS_ID") public java.lang.Object getDetailsId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.DETAILS_ID); } @@ -106,6 +112,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "TITLE") public java.lang.Object getTitle() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.TITLE); } @@ -126,6 +133,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "PUBLISHED_IN") public java.lang.Object getPublishedIn() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.PUBLISHED_IN); } @@ -146,6 +154,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "LANGUAGE_ID") public java.lang.Object getLanguageId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.LANGUAGE_ID); } @@ -166,6 +175,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "CONTENT_TEXT") public java.lang.Object getContentText() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.CONTENT_TEXT); } @@ -186,6 +196,7 @@ public class VIncompleteRecord extends org.jooq.impl.TableRecordImpl * Deserialising this field might not work! */ + @javax.persistence.Column(name = "CONTENT_PDF") public java.lang.Object getContentPdf() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.VIncomplete.V_INCOMPLETE.CONTENT_PDF); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/VLibraryRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/VLibraryRecord.java index a01bee6474..081166b1c9 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/VLibraryRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/VLibraryRecord.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "V_LIBRARY", schema = "TEST") public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = -376307566; + private static final long serialVersionUID = -438332383; /** * An uncommented item @@ -20,6 +22,7 @@ public class VLibraryRecord extends org.jooq.impl.TableRecordImpl { - private static final long serialVersionUID = 1036615729; + private static final long serialVersionUID = -2118051824; /** * An uncommented item @@ -24,6 +26,8 @@ public class XTestCase_64_69Record extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "UNUSED_ID") public java.lang.Integer getUnusedId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_64_69.X_TEST_CASE_64_69.UNUSED_ID); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_71Record.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_71Record.java index 3498df9f47..c22475430c 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_71Record.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_71Record.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "X_TEST_CASE_71", schema = "TEST") public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -450082526; + private static final long serialVersionUID = 1780956447; /** * An uncommented item @@ -24,6 +26,8 @@ public class XTestCase_71Record extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "TEST_CASE_64_69_ID") public java.lang.Short getTestCase_64_69Id() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_71.X_TEST_CASE_71.TEST_CASE_64_69_ID); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_85Record.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_85Record.java index bd9f662589..e18496fb0c 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_85Record.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XTestCase_85Record.java @@ -6,9 +6,11 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records; /** * This class is generated by jOOQ. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "X_TEST_CASE_85", schema = "TEST") public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -642886110; + private static final long serialVersionUID = -1212575239; /** * An uncommented item @@ -24,6 +26,8 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "X_UNUSED_ID") public java.lang.Integer getXUnusedId() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85.X_UNUSED_ID); } @@ -93,6 +98,7 @@ public class XTestCase_85Record extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "X_UNUSED_NAME") public java.lang.String getXUnusedName() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XTestCase_85.X_TEST_CASE_85.X_UNUSED_NAME); } diff --git a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XUnusedRecord.java b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XUnusedRecord.java index b6152a336a..1a35118757 100644 --- a/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XUnusedRecord.java +++ b/jOOQ-test/src/org/jooq/test/oracle/generatedclasses/test/tables/records/XUnusedRecord.java @@ -8,9 +8,13 @@ package org.jooq.test.oracle.generatedclasses.test.tables.records; * * An unused table in the same schema. */ +@javax.persistence.Entity +@javax.persistence.Table(name = "X_UNUSED", schema = "TEST", uniqueConstraints = { + @javax.persistence.UniqueConstraint(columnNames = {"ID", "NAME"}) +}) public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl { - private static final long serialVersionUID = -1329347464; + private static final long serialVersionUID = 1076140418; /** * An uncommented item @@ -26,6 +30,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "ID_REF") public java.lang.Integer getIdRef() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.ID_REF); } @@ -153,6 +161,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl */ + @javax.persistence.Column(name = "NAME_REF") public java.lang.String getNameRef() { return getValue(org.jooq.test.oracle.generatedclasses.test.tables.XUnused.X_UNUSED.NAME_REF); } @@ -291,6 +308,7 @@ public class XUnusedRecord extends org.jooq.impl.UpdatableRecordImpl