public class Person { final int id, birthday, birthmonth, birthyear; private String name; public Person(int id, int birthday, int birthmonth, int birthyear, String name) { this.id = id; this.birthday = birthday; this.birthmonth = birthmonth; this.birthyear = birthyear; this.name = name; } public String getName() { return name; } }