Source code: com/flexstor/common/services/remote/RemoteServerI.java
1 /*
2 * RemoteServerI.java
3 *
4 * Copyright $Date: 2003/08/11 02:22:50 $ FLEXSTOR.net Inc.
5 *
6 * This work is licensed for use and distribution under license terms found at
7 * http://www.flexstor.org/license.html
8 *
9 */
10
11 package com.flexstor.common.services.remote;
12
13 import java.rmi.Remote;
14 import java.rmi.RemoteException;
15
16
17
18 public interface RemoteServerI
19 extends Remote
20 {
21 public static String sREMOTE_SERVER = "/com.flexstor.common.services.remote.RemoteAssetServer"; // A String used to create the host name
22 public abstract String ping() throws RemoteException;
23 public abstract boolean bindService(String sClassname) throws RemoteException;
24 }