package eu.dnetlib.broker.objects;

/**
 * Created by claudio on 26/07/16.
 */
public class Provenance {

	private String repositoryName;

	private String url;

	private String id;

	public Provenance() {}

	public String getRepositoryName() {
		return this.repositoryName;
	}

	public Provenance setRepositoryName(final String repositoryName) {
		this.repositoryName = repositoryName;
		return this;
	}

	public String getUrl() {
		return this.url;
	}

	public Provenance setUrl(final String url) {
		this.url = url;
		return this;
	}

	public String getId() {
		return this.id;
	}

	public Provenance setId(final String id) {
		this.id = id;
		return this;
	}
}
