[Solr Model] simplified author details

This commit is contained in:
Claudio Atzori 2024-10-25 13:03:18 +02:00
parent eee23553bd
commit c43362bc6d
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
<groupId>eu.dnetlib.dhp</groupId>
<artifactId>dhp-schemas</artifactId>
<packaging>jar</packaging>
<version>9.0.1-SNAPSHOT</version>
<version>9.0.0-SNAPSHOT</version>
<licenses>
<license>

View File

@ -14,7 +14,7 @@ public class RelatedRecord implements Serializable {
private String websiteurl; // datasource, organizations, projects
// results
private List<Author> author;
private List<String> author;
private String description;
private String dateofacceptance;
private String publisher;
@ -59,11 +59,11 @@ public class RelatedRecord implements Serializable {
this.title = title;
}
public List<Author> getAuthor() {
public List<String> getAuthor() {
return author;
}
public void setAuthor(List<Author> author) {
public void setAuthor(List<String> author) {
this.author = author;
}