mirror of https://github.com/apache/cloudstack.git
15 lines
355 B
Java
15 lines
355 B
Java
package com.cloud.network;
|
|
|
|
import org.apache.cloudstack.api.Identity;
|
|
import org.apache.cloudstack.api.InternalIdentity;
|
|
|
|
public interface NsxProvider extends InternalIdentity, Identity {
|
|
String getHostname();
|
|
String getProviderName();
|
|
String getUsername();
|
|
long getZoneId();
|
|
|
|
String getTier0Gateway();
|
|
String getEdgeCluster();
|
|
}
|