KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > quikj > client > raccess > AceRMIInterface


1 /*
2  * HTTPSRMIInterface.java
3  *
4  * Created on May 26, 2003, 12:12 PM
5  */

6
7 package com.quikj.client.raccess;
8
9 import java.rmi.*;
10
11 /**
12  *
13  * @author amit
14  */

15 public interface AceRMIInterface extends Remote
16 {
17     public String JavaDoc getParam (String JavaDoc object, String JavaDoc param) throws RemoteException;
18     public boolean setParam (String JavaDoc object, String JavaDoc param, String JavaDoc value)
19     throws RemoteException;
20 }
21
Popular Tags