package eu.dnetlib.openaire.action;

public class Relation {
	private String type;
	private String sourceId;
	private String targetId;

	public Relation(String type, String sourceId, String targetId) {
		super();
		this.type = type;
		this.sourceId = sourceId;
		this.targetId = targetId;
	}

	public String getType() {
		return type;
	}

	public void setType(String type) {
		this.type = type;
	}

	public String getSourceId() {
		return sourceId;
	}

	public void setSourceId(String sourceId) {
		this.sourceId = sourceId;
	}

	public String getTargetId() {
		return targetId;
	}

	public void setTargetId(String targetId) {
		this.targetId = targetId;
	}

}