openaire-usage-stats-sushil.../src/main/java/eu/dnetlib/usagestats/sushilite/domain/InstitutionID.java

32 lines
552 B
Java
Raw Normal View History

2021-01-05 13:22:04 +01:00
package eu.dnetlib.usagestats.sushilite.domain;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Created by dpie on 04/01/2020.
*/
public class InstitutionID {
private String type;
private String value;
public InstitutionID() {
}
public InstitutionID(String type, String value) {
this.type = type;
this.value = value;
}
@JsonProperty("Type")
public String getType() {
return type;
}
@JsonProperty("Value")
public String getValue() {
return value;
}
}