Revert "[Graph Dump] changed the type for policies from Object to String"
This reverts commit 95592369f2
.
This commit is contained in:
parent
baef47b360
commit
5276cc1195
|
@ -93,7 +93,7 @@ public class Datasource implements Serializable {
|
||||||
|
|
||||||
private String certificates; // string
|
private String certificates; // string
|
||||||
|
|
||||||
private List<String> policies; //
|
private List<Object> policies; //
|
||||||
|
|
||||||
private Container journal; // issn etc del Journal
|
private Container journal; // issn etc del Journal
|
||||||
|
|
||||||
|
@ -297,11 +297,11 @@ public class Datasource implements Serializable {
|
||||||
this.certificates = certificates;
|
this.certificates = certificates;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<String> getPolicies() {
|
public List<Object> getPolicies() {
|
||||||
return policies;
|
return policies;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setPolicies(List<String> policiesr3) {
|
public void setPolicies(List<Object> policiesr3) {
|
||||||
this.policies = policiesr3;
|
this.policies = policiesr3;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue