Skip to content

Commit 8d3f135

Browse files
author
Alex Huang
committed
more missing files
1 parent d094ff3 commit 8d3f135

4 files changed

Lines changed: 49 additions & 0 deletions

File tree

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
/**
2+
*
3+
*/
4+
package com.cloud.dc;
5+
6+
import com.cloud.org.Grouping;
7+
8+
/**
9+
*
10+
*/
11+
public interface DataCenter extends Grouping {
12+
long getId();
13+
}

api/src/com/cloud/dc/Pod.java

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
/**
2+
*
3+
*/
4+
package com.cloud.dc;
5+
6+
import com.cloud.org.Grouping;
7+
8+
/**
9+
* Represents one pod in the cloud stack.
10+
*
11+
*/
12+
public interface Pod extends Grouping {
13+
/**
14+
* @return unique id mapped to the pod.
15+
*/
16+
long getId();
17+
18+
//String getUniqueName();
19+
}

api/src/com/cloud/org/Cluster.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
/**
2+
*
3+
*/
4+
package com.cloud.org;
5+
6+
public interface Cluster extends Grouping {
7+
long getId();
8+
9+
}
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
/**
2+
*
3+
*/
4+
package com.cloud.org;
5+
6+
public interface Grouping {
7+
8+
}

0 commit comments

Comments
 (0)