formatted code

This commit is contained in:
Sandro La Bruzzo 2024-09-03 10:40:35 +02:00
parent 8ccd24b34b
commit b48a0a4541
1 changed files with 3 additions and 3 deletions

View File

@ -11,7 +11,7 @@ import eu.dnetlib.dhp.schema.sx.scholix.ScholixIdentifier;
public class ScholixSummary implements Serializable {
private String id;
private List<ScholixIdentifier> localIdentifier;
private Typology typology;
private String typology;
private String subType;
private List<String> title;
private List<String> author;
@ -40,11 +40,11 @@ public class ScholixSummary implements Serializable {
this.localIdentifier = localIdentifier;
}
public Typology getTypology() {
public String getTypology() {
return typology;
}
public void setTypology(Typology typology) {
public void setTypology(String typology) {
this.typology = typology;
}