Add funderType field in stakeholder.
This commit is contained in:
parent
c8adee576e
commit
615da7f3c2
|
@ -46,6 +46,7 @@ public class Stakeholder<StringOrTopic> {
|
||||||
private String defaultId = null;
|
private String defaultId = null;
|
||||||
private Locale locale = Locale.EU;
|
private Locale locale = Locale.EU;
|
||||||
private Visibility visibility = Visibility.PRIVATE;
|
private Visibility visibility = Visibility.PRIVATE;
|
||||||
|
private String funderType;
|
||||||
private Date creationDate;
|
private Date creationDate;
|
||||||
private Date updateDate;
|
private Date updateDate;
|
||||||
|
|
||||||
|
@ -70,6 +71,7 @@ public class Stakeholder<StringOrTopic> {
|
||||||
defaultId = stakeholder.getDefaultId();
|
defaultId = stakeholder.getDefaultId();
|
||||||
setLocale(stakeholder.getLocale());
|
setLocale(stakeholder.getLocale());
|
||||||
setVisibility(stakeholder.getVisibility());
|
setVisibility(stakeholder.getVisibility());
|
||||||
|
this.funderType = stakeholder.getFunderType();
|
||||||
creationDate = stakeholder.getCreationDate();
|
creationDate = stakeholder.getCreationDate();
|
||||||
updateDate = stakeholder.getUpdateDate();
|
updateDate = stakeholder.getUpdateDate();
|
||||||
}
|
}
|
||||||
|
@ -214,6 +216,14 @@ public class Stakeholder<StringOrTopic> {
|
||||||
this.visibility = visibility;
|
this.visibility = visibility;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public String getFunderType() {
|
||||||
|
return funderType;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setFunderType(String funderType) {
|
||||||
|
this.funderType = funderType;
|
||||||
|
}
|
||||||
|
|
||||||
public Date getCreationDate() {
|
public Date getCreationDate() {
|
||||||
return creationDate;
|
return creationDate;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue