[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> <groupId>eu.dnetlib.dhp</groupId>
<artifactId>dhp-schemas</artifactId> <artifactId>dhp-schemas</artifactId>
<packaging>jar</packaging> <packaging>jar</packaging>
<version>9.0.1-SNAPSHOT</version> <version>9.0.0-SNAPSHOT</version>
<licenses> <licenses>
<license> <license>

View File

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