org.openstack4j.model.common.BasicResource Maven / Gradle / Ivy
package org.openstack4j.model.common;
/**
* 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);
}