Add funderType field in stakeholder.

This commit is contained in:
Konstantinos Triantafyllou 2023-11-09 15:02:11 +02:00
parent c8adee576e
commit 615da7f3c2
1 changed files with 10 additions and 0 deletions

View File

@ -46,6 +46,7 @@ public class Stakeholder<StringOrTopic> {
private String defaultId = null;
private Locale locale = Locale.EU;
private Visibility visibility = Visibility.PRIVATE;
private String funderType;
private Date creationDate;
private Date updateDate;
@ -70,6 +71,7 @@ public class Stakeholder<StringOrTopic> {
defaultId = stakeholder.getDefaultId();
setLocale(stakeholder.getLocale());
setVisibility(stakeholder.getVisibility());
this.funderType = stakeholder.getFunderType();
creationDate = stakeholder.getCreationDate();
updateDate = stakeholder.getUpdateDate();
}
@ -214,6 +216,14 @@ public class Stakeholder<StringOrTopic> {
this.visibility = visibility;
}
public String getFunderType() {
return funderType;
}
public void setFunderType(String funderType) {
this.funderType = funderType;
}
public Date getCreationDate() {
return creationDate;
}