mirror of https://github.com/apache/cloudstack.git
more missing files
This commit is contained in:
parent
d094ff3afb
commit
8d3f135115
|
|
@ -0,0 +1,13 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.dc;
|
||||
|
||||
import com.cloud.org.Grouping;
|
||||
|
||||
/**
|
||||
*
|
||||
*/
|
||||
public interface DataCenter extends Grouping {
|
||||
long getId();
|
||||
}
|
||||
|
|
@ -0,0 +1,19 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.dc;
|
||||
|
||||
import com.cloud.org.Grouping;
|
||||
|
||||
/**
|
||||
* Represents one pod in the cloud stack.
|
||||
*
|
||||
*/
|
||||
public interface Pod extends Grouping {
|
||||
/**
|
||||
* @return unique id mapped to the pod.
|
||||
*/
|
||||
long getId();
|
||||
|
||||
//String getUniqueName();
|
||||
}
|
||||
|
|
@ -0,0 +1,9 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.org;
|
||||
|
||||
public interface Cluster extends Grouping {
|
||||
long getId();
|
||||
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
/**
|
||||
*
|
||||
*/
|
||||
package com.cloud.org;
|
||||
|
||||
public interface Grouping {
|
||||
|
||||
}
|
||||
Loading…
Reference in New Issue