added new attribute to store the orcid fullname when provided

This commit is contained in:
Miriam Baglioni 2020-11-04 13:19:57 +01:00
parent 72abbb0510
commit c694457acc
1 changed files with 8 additions and 0 deletions

View File

@ -6,7 +6,15 @@ public class OrcidAuthotitative implements Serializable {
private String oid;
private String name;
private String surname;
private String creditname;
public String getCreditname() {
return creditname;
}
public void setCreditname(String creditname) {
this.creditname = creditname;
}
public String getOid() {
return oid;