|
|
@@ -29,6 +29,8 @@ public class CensusCommandImpl implements CensusCommand {
|
|
|
|
|
|
private String roomsWithWindows;
|
|
|
|
|
|
+ private String filledInBy;
|
|
|
+
|
|
|
@Override
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
@@ -98,4 +100,14 @@ public class CensusCommandImpl implements CensusCommand {
|
|
|
public void setRoomsWithWindows(String roomsWithWindows) {
|
|
|
this.roomsWithWindows = roomsWithWindows;
|
|
|
}
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public String getFilledInBy() {
|
|
|
+ return filledInBy;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public void setFilledInBy(String filledInBy) {
|
|
|
+ this.filledInBy = filledInBy;
|
|
|
+ }
|
|
|
}
|