mirror of https://github.com/apache/cloudstack.git
13 lines
380 B
Java
13 lines
380 B
Java
package com.cloud.cluster;
|
|
|
|
import java.rmi.RemoteException;
|
|
|
|
import com.cloud.cluster.ClusterService;
|
|
import com.cloud.utils.component.Adapter;
|
|
|
|
public interface ClusterServiceAdapter extends Adapter {
|
|
public ClusterService getPeerService(String strPeer) throws RemoteException;
|
|
public String getServiceEndpointName(String strPeer);
|
|
public int getServicePort();
|
|
}
|