dnet-hadoop/dhp-workflows/dhp-aggregation/src/main/java/eu/dnetlib/dhp/actionmanager/ror/model/Relationship.java

46 lines
725 B
Java
Raw Normal View History

package eu.dnetlib.dhp.actionmanager.ror.model;
import java.io.Serializable;
2021-04-29 09:29:19 +02:00
import com.fasterxml.jackson.annotation.JsonProperty;
public class Relationship implements Serializable {
2021-08-11 12:13:22 +02:00
private static final long serialVersionUID = 7847399503395576960L;
2021-04-29 09:29:19 +02:00
@JsonProperty("type")
private String type;
2021-04-29 09:29:19 +02:00
@JsonProperty("id")
private String id;
2021-04-29 09:29:19 +02:00
@JsonProperty("label")
private String label;
2021-04-29 09:29:19 +02:00
public String getType() {
return type;
}
public void setType(final String type) {
this.type = type;
}
public String getId() {
return id;
}
public void setId(final String id) {
this.id = id;
}
public String getLabel() {
return label;
}
public void setLabel(final String label) {
this.label = label;
}
}