Match the annotations with their positions in the Person entity class:
Java
// 1
public class Person {
// 2
private Integer id;
// 3
private Profile profile;
// 4
private Set<String> phoneNumbers;
// getters and setters
}Kotlin
// 1
class Person(
// 2
var id: Int?,
// 3
var profile: Profile,
// 4
var phoneNumbers: Set<String>
)