All Downloads are FREE. Search and download functionalities are using the official Maven repository.

eu.unicore.services.rest.Link Maven / Gradle / Ivy

There is a newer version: 5.2.0-2
Show newest version
package eu.unicore.services.rest;

public class Link {

	private final String href, description, relation;
	
	public Link( String relation, String href, String description){
		this.relation = relation;
		this.href = href;
		this.description = description;
	}

	public Link( String relation, String href){
		this(relation,href,null);
	}
	
	public String getHref() {
		return href;
	}

	public String getDescription() {
		return description;
	}

	public String getRelation() {
		return relation;
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy