mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 05:26:35 +00:00
17 lines
265 B
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();
|
|
|
|
}
|