01: package com.salmonllc.remote;
02:
03: /**
04: * Created by IntelliJ IDEA.
05: * User: Fred Cahill
06: * Date: Sep 29, 2004
07: * Time: 9:35:35 AM
08: * To change this template use Options | File Templates.
09: */
10: /**
11: * This interface is used to indicate a class which can have itself instantiated and methods called remotely using the RemoteProxy and RemoteReflector Servlet.
12: * The RemoteReflectionSecurityManager class is the default policy which allows classes that implement reflect to work.
13: */
14: public interface Reflect {
15: }
|