[Graph Dump] changed the type for policies from Object to String

This commit is contained in:
Miriam Baglioni 2021-11-17 09:28:54 +01:00
parent 9663d50027
commit 95592369f2
1 changed files with 3 additions and 3 deletions

View File

@ -93,7 +93,7 @@ public class Datasource implements Serializable {
private String certificates; // string
private List<Object> policies; //
private List<String> policies; //
private Container journal; // issn etc del Journal
@ -297,11 +297,11 @@ public class Datasource implements Serializable {
this.certificates = certificates;
}
public List<Object> getPolicies() {
public List<String> getPolicies() {
return policies;
}
public void setPolicies(List<Object> policiesr3) {
public void setPolicies(List<String> policiesr3) {
this.policies = policiesr3;
}