01: package com.salmonllc.remote;
02:
03: import java.io.Serializable;
04:
05: /**
06: * Created by IntelliJ IDEA.
07: * User: Fred Cahill
08: * Date: Sep 14, 2004
09: * Time: 10:07:41 AM
10: * To change this template use Options | File Templates.
11: */
12: /**
13: * This interface is used to get the session key that references an object in the session on the server. Used in association with RemoteProxy.
14: */
15: public interface RemoteReflection extends Serializable {
16: public String getSessionKey();
17: }
|