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

com.woorea.openstack.keystone.model.Link Maven / Gradle / Ivy

There is a newer version: 3.2.9
Show newest version
package com.woorea.openstack.keystone.model;

import java.io.Serializable;

public class Link implements Serializable {

	private String rel;
	
	private String href;
	
	private String type;

	/**
	 * @return the rel
	 */
	public String getRel() {
		return rel;
	}

	/**
	 * @return the href
	 */
	public String getHref() {
		return href;
	}

	/**
	 * @return the type
	 */
	public String getType() {
		return type;
	}

	/* (non-Javadoc)
	 * @see java.lang.Object#toString()
	 */
	@Override
	public String toString() {
		return "Link [rel=" + rel + ", href=" + href + ", type=" + type + "]";
	}
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy