Serialized Form
-
Package com.ibanfr.domain.model
-
Class com.ibanfr.domain.model.Employee
class Employee extends DomainEntity implements Serializable-
Serialized Fields
-
name
String name
-
-
-
Class com.ibanfr.domain.model.Team
class Team extends DomainEntity implements Serializable- serialVersionUID:
- -6197675373768898713L
-
Serialized Fields
-
members
List<Employee> members
OneToMany association withEmployeeentity mapped as a List.Defining
CascadeType.ALLfor the associatedEmployeeentity.Defining orphanRemoval to cascade the remove operation to entities that have been removed from the relationship.
Using
JoinColumnto implement unidirectional one-to-many association using a foreign key mapping.Specifying
ForeignKeyname to avoid using the persistence provider's default foreign key strategy. -
name
String name
-
-