Class Book
- java.lang.Object
-
- org.hibernate.reactive.it.reference.Book
-
@Entity(name="Tome") public class Book extends Object
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<Author>
getAuthors()
Integer
getId()
String
getTitle()
Integer
getVersion()
int
hashCode()
void
setAuthors(List<Author> authors)
void
setId(Integer id)
void
setTitle(String title)
void
setVersion(Integer version)
-
-
-
Constructor Detail
-
Book
public Book()
-
Book
public Book(String title)
-
-