removed the collected from element from the entities

This commit is contained in:
Miriam Baglioni 2020-07-29 16:55:08 +02:00
parent 6a499c6b7a
commit c760d16936
2 changed files with 18 additions and 16 deletions

View File

@ -18,7 +18,7 @@ public class Organization implements Serializable {
private Qualifier country;
private String id;
private List<ControlledField> pid;
private List<KeyValue> collectedfrom;
// private List<KeyValue> collectedfrom;
public String getLegalshortname() {
return legalshortname;
@ -76,11 +76,11 @@ public class Organization implements Serializable {
this.pid = pid;
}
public List<KeyValue> getCollectedfrom() {
return collectedfrom;
}
public void setCollectedfrom(List<KeyValue> collectedfrom) {
this.collectedfrom = collectedfrom;
}
// public List<KeyValue> getCollectedfrom() {
// return collectedfrom;
// }
//
// public void setCollectedfrom(List<KeyValue> collectedfrom) {
// this.collectedfrom = collectedfrom;
// }
}

View File

@ -6,9 +6,11 @@ import java.util.List;
import eu.dnetlib.dhp.schema.dump.oaf.KeyValue;
//At the moment the funder is map in the project.
//We will reserve to decide if to create specific entities for funders or let them in the project
public class Project implements Serializable {
private String id;
private List<KeyValue> collectedfrom;
// private List<KeyValue> collectedfrom;
private String websiteurl;
private String code;
private String acronym;
@ -172,11 +174,11 @@ public class Project implements Serializable {
this.programme = programme;
}
public List<KeyValue> getCollectedfrom() {
return collectedfrom;
}
public void setCollectedfrom(List<KeyValue> collectedfrom) {
this.collectedfrom = collectedfrom;
}
// public List<KeyValue> getCollectedfrom() {
// return collectedfrom;
// }
//
// public void setCollectedfrom(List<KeyValue> collectedfrom) {
// this.collectedfrom = collectedfrom;
// }
}