Change visibility to private

This commit is contained in:
Tobias Eidelpes 2021-04-03 11:24:30 +02:00
parent f639e25392
commit ea62b14596

View File

@ -12,10 +12,10 @@ import java.util.Objects;
@Embeddable
public class EmploymentKey implements IEmploymentKey, Serializable {
@ManyToOne(targetEntity = Driver.class)
IDriver driver;
private IDriver driver;
@ManyToOne(targetEntity = Organization.class)
IOrganization organization;
private IOrganization organization;
public EmploymentKey() {
}