Regenerate examples
This commit is contained in:
parent
e12cada70a
commit
fded3f189b
@ -14,7 +14,7 @@ import java.time.LocalDate;
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Author implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 1287432081;
|
||||
private static final long serialVersionUID = -1160184137;
|
||||
|
||||
private Integer id;
|
||||
private String firstName;
|
||||
@ -50,50 +50,86 @@ public class Author implements Serializable {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.ID</code>.
|
||||
*/
|
||||
public Integer getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.ID</code>.
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.FIRST_NAME</code>.
|
||||
*/
|
||||
public String getFirstName() {
|
||||
return this.firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.FIRST_NAME</code>.
|
||||
*/
|
||||
public void setFirstName(String firstName) {
|
||||
this.firstName = firstName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.LAST_NAME</code>.
|
||||
*/
|
||||
public String getLastName() {
|
||||
return this.lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.LAST_NAME</code>.
|
||||
*/
|
||||
public void setLastName(String lastName) {
|
||||
this.lastName = lastName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.DATE_OF_BIRTH</code>.
|
||||
*/
|
||||
public LocalDate getDateOfBirth() {
|
||||
return this.dateOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.DATE_OF_BIRTH</code>.
|
||||
*/
|
||||
public void setDateOfBirth(LocalDate dateOfBirth) {
|
||||
this.dateOfBirth = dateOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.YEAR_OF_BIRTH</code>.
|
||||
*/
|
||||
public Integer getYearOfBirth() {
|
||||
return this.yearOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.YEAR_OF_BIRTH</code>.
|
||||
*/
|
||||
public void setYearOfBirth(Integer yearOfBirth) {
|
||||
this.yearOfBirth = yearOfBirth;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.AUTHOR.ADDRESS</code>.
|
||||
*/
|
||||
public String getAddress() {
|
||||
return this.address;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.AUTHOR.ADDRESS</code>.
|
||||
*/
|
||||
public void setAddress(String address) {
|
||||
this.address = address;
|
||||
}
|
||||
|
||||
@ -14,7 +14,7 @@ import java.time.LocalDateTime;
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class Book implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = 610281033;
|
||||
private static final long serialVersionUID = -1597923197;
|
||||
|
||||
private Integer id;
|
||||
private Integer authorId;
|
||||
@ -70,90 +70,156 @@ public class Book implements Serializable {
|
||||
this.recTimestamp = recTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.ID</code>.
|
||||
*/
|
||||
public Integer getId() {
|
||||
return this.id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.ID</code>.
|
||||
*/
|
||||
public void setId(Integer id) {
|
||||
this.id = id;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.AUTHOR_ID</code>.
|
||||
*/
|
||||
public Integer getAuthorId() {
|
||||
return this.authorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.AUTHOR_ID</code>.
|
||||
*/
|
||||
public void setAuthorId(Integer authorId) {
|
||||
this.authorId = authorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.CO_AUTHOR_ID</code>.
|
||||
*/
|
||||
public Integer getCoAuthorId() {
|
||||
return this.coAuthorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.CO_AUTHOR_ID</code>.
|
||||
*/
|
||||
public void setCoAuthorId(Integer coAuthorId) {
|
||||
this.coAuthorId = coAuthorId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.DETAILS_ID</code>.
|
||||
*/
|
||||
public Integer getDetailsId() {
|
||||
return this.detailsId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.DETAILS_ID</code>.
|
||||
*/
|
||||
public void setDetailsId(Integer detailsId) {
|
||||
this.detailsId = detailsId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.TITLE</code>.
|
||||
*/
|
||||
public String getTitle() {
|
||||
return this.title;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.TITLE</code>.
|
||||
*/
|
||||
public void setTitle(String title) {
|
||||
this.title = title;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.PUBLISHED_IN</code>.
|
||||
*/
|
||||
public Integer getPublishedIn() {
|
||||
return this.publishedIn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.PUBLISHED_IN</code>.
|
||||
*/
|
||||
public void setPublishedIn(Integer publishedIn) {
|
||||
this.publishedIn = publishedIn;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.LANGUAGE_ID</code>.
|
||||
*/
|
||||
public Integer getLanguageId() {
|
||||
return this.languageId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.LANGUAGE_ID</code>.
|
||||
*/
|
||||
public void setLanguageId(Integer languageId) {
|
||||
this.languageId = languageId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.CONTENT_TEXT</code>.
|
||||
*/
|
||||
public String getContentText() {
|
||||
return this.contentText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.CONTENT_TEXT</code>.
|
||||
*/
|
||||
public void setContentText(String contentText) {
|
||||
this.contentText = contentText;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.CONTENT_PDF</code>.
|
||||
*/
|
||||
public byte[] getContentPdf() {
|
||||
return this.contentPdf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.CONTENT_PDF</code>.
|
||||
*/
|
||||
public void setContentPdf(byte[] contentPdf) {
|
||||
this.contentPdf = contentPdf;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.REC_VERSION</code>.
|
||||
*/
|
||||
public Integer getRecVersion() {
|
||||
return this.recVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.REC_VERSION</code>.
|
||||
*/
|
||||
public void setRecVersion(Integer recVersion) {
|
||||
this.recVersion = recVersion;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK.REC_TIMESTAMP</code>.
|
||||
*/
|
||||
public LocalDateTime getRecTimestamp() {
|
||||
return this.recTimestamp;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK.REC_TIMESTAMP</code>.
|
||||
*/
|
||||
public void setRecTimestamp(LocalDateTime recTimestamp) {
|
||||
this.recTimestamp = recTimestamp;
|
||||
}
|
||||
|
||||
@ -13,7 +13,7 @@ import java.io.Serializable;
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class BookStore implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -1971243490;
|
||||
private static final long serialVersionUID = 1239527942;
|
||||
|
||||
private String name;
|
||||
|
||||
@ -29,10 +29,16 @@ public class BookStore implements Serializable {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK_STORE.NAME</code>.
|
||||
*/
|
||||
public String getName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK_STORE.NAME</code>.
|
||||
*/
|
||||
public void setName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@ -13,7 +13,7 @@ import java.io.Serializable;
|
||||
@SuppressWarnings({ "all", "unchecked", "rawtypes" })
|
||||
public class BookToBookStore implements Serializable {
|
||||
|
||||
private static final long serialVersionUID = -114511192;
|
||||
private static final long serialVersionUID = -1002158446;
|
||||
|
||||
private String bookStoreName;
|
||||
private Integer bookId;
|
||||
@ -37,26 +37,44 @@ public class BookToBookStore implements Serializable {
|
||||
this.stock = stock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>.
|
||||
*/
|
||||
public String getBookStoreName() {
|
||||
return this.bookStoreName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK_TO_BOOK_STORE.BOOK_STORE_NAME</code>.
|
||||
*/
|
||||
public void setBookStoreName(String bookStoreName) {
|
||||
this.bookStoreName = bookStoreName;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK_TO_BOOK_STORE.BOOK_ID</code>.
|
||||
*/
|
||||
public Integer getBookId() {
|
||||
return this.bookId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK_TO_BOOK_STORE.BOOK_ID</code>.
|
||||
*/
|
||||
public void setBookId(Integer bookId) {
|
||||
this.bookId = bookId;
|
||||
}
|
||||
|
||||
/**
|
||||
* Getter for <code>PUBLIC.BOOK_TO_BOOK_STORE.STOCK</code>.
|
||||
*/
|
||||
public Integer getStock() {
|
||||
return this.stock;
|
||||
}
|
||||
|
||||
/**
|
||||
* Setter for <code>PUBLIC.BOOK_TO_BOOK_STORE.STOCK</code>.
|
||||
*/
|
||||
public void setStock(Integer stock) {
|
||||
this.stock = stock;
|
||||
}
|
||||
|
||||
Loading…
Reference in New Issue
Block a user