Compare commits

..

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

2 changed files with 1 additions and 14 deletions

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.2-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;
}
}