added alternative names on the report

This commit is contained in:
Miriam Baglioni 2020-11-18 12:13:43 +01:00
parent 8555082bb1
commit 2aa48a132a
1 changed files with 9 additions and 0 deletions

View File

@ -9,9 +9,18 @@ public class ReportInfo implements Serializable {
private String oname;
private String osurname;
private String ocreditname;
private List<String> alternativeNames;
private List<ResultInfo> associatedAuthors;
public List<String> getAlternativeNames() {
return alternativeNames;
}
public void setAlternativeNames(List<String> alternativeNames) {
this.alternativeNames = alternativeNames;
}
private String level;
public String getLevel() {