cloudstack/api/src/com/cloud/template/BasedOn.java

17 lines
265 B
Java

/**
*
*/
package com.cloud.template;
/**
* BasedOn is implemented by all objects that are based on a certain template.
*/
public interface BasedOn {
/**
* @return the template id that the volume is based on.
*/
Long getTemplateId();
}