|
|
@@ -37,6 +37,8 @@ public class CensusEntryCommandImpl implements CensusEntryCommand {
|
|
|
|
|
|
private String birthYear;
|
|
|
|
|
|
+ private String personalOccupation;
|
|
|
+
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
@@ -164,4 +166,14 @@ public class CensusEntryCommandImpl implements CensusEntryCommand {
|
|
|
public void setBirthYear(String birthYear) {
|
|
|
this.birthYear = birthYear;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getPersonalOccupation() {
|
|
|
+ return this.personalOccupation;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setPersonalOccupation(String personalOccupation) {
|
|
|
+ this.personalOccupation = personalOccupation;
|
|
|
+ }
|
|
|
}
|