mirror of https://github.com/apache/cloudstack.git
32 lines
457 B
Java
32 lines
457 B
Java
/**
|
|
*
|
|
*/
|
|
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 getCidrAddress();
|
|
|
|
int getCidrSize();
|
|
|
|
String getGateway();
|
|
|
|
long getDataCenterId();
|
|
|
|
//String getUniqueName();
|
|
|
|
String getDescription();
|
|
|
|
String getName();
|
|
}
|