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

com.github.narcissujsk.openstackjsk.model.common.BasicResource Maven / Gradle / Ivy

The newest version!
package com.github.narcissujsk.openstackjsk.model.common;


import com.github.narcissujsk.openstackjsk.model.common.IdEntity;

/**
 * A basic resource that captures an Id and Name of the resource
 * 
 * @author Jeremy Unruh
 */
public interface BasicResource extends IdEntity {

	/**
	 * @return the name for this resource
	 */
	String getName();
	
	/**
	 * Sets the name for this resource
	 * 
	 * @param name the name to set
	 */
	void setName(String name);
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy