Compare commits

..

No commits in common. "master" and "doidoost_dismiss" have entirely different histories.

4 changed files with 1 additions and 25 deletions

View File

@ -4,7 +4,6 @@
| **Version** | **Changes** | **Readiness** |
|-------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------|
| 6.1.1 | [Graph model] </br> <ul><li>Introduced constants used in the DOIBoost dismission.</li></ul> | beta |
| 6.1.0 | [Graph model] </br> <ul><li>Introduced model classes to provide a JSON representation of records embedding information from the related entities.</li></ul> | beta |
| 5.17.3 | [Graph model] </br> <ul><li>added result level textual field to store the transformative agreement information.</li></ul> | beta |
| 4.17.3 | [Graph model] </br> <ul><li>moved context at the level of the entity. </li></ul> | beta |

View File

@ -5,7 +5,7 @@
<groupId>eu.dnetlib.dhp</groupId>
<artifactId>dhp-schemas</artifactId>
<packaging>jar</packaging>
<version>6.1.3-SNAPSHOT</version>
<version>6.1.1-SNAPSHOT</version>
<licenses>
<license>

View File

@ -6,10 +6,6 @@ import java.util.List;
public class Organization extends OafEntity implements Serializable {
enum OrganizationType {
Archive, Company, Education, Facility, Government, Healthcare, Nonprofit, Other, Unknown
}
private static final long serialVersionUID = -9048723860770504113L;
private Field<String> legalshortname;
@ -44,8 +40,6 @@ public class Organization extends OafEntity implements Serializable {
private Qualifier country;
private OrganizationType organizationType;
public Field<String> getLegalshortname() {
return legalshortname;
}
@ -175,11 +169,4 @@ public class Organization extends OafEntity implements Serializable {
this.country = country;
}
public OrganizationType getOrganizationType() {
return organizationType;
}
public void setOrganizationType(OrganizationType organizationType) {
this.organizationType = organizationType;
}
}

View File

@ -18,8 +18,6 @@ public class Project implements Serializable {
private String keywords;
private String duration;
private String oamandatepublications;
private String ecarticle29_3;
private List<Subject> subjects;
@ -109,14 +107,6 @@ public class Project implements Serializable {
this.duration = duration;
}
public String getOamandatepublications() {
return oamandatepublications;
}
public void setOamandatepublications(String oamandatepublications) {
this.oamandatepublications = oamandatepublications;
}
public String getEcarticle29_3() {
return ecarticle29_3;
}