| java.lang.Object org.jboss.security.srp.SRPServerProxy
SRPServerProxy | public class SRPServerProxy implements InvocationHandler,Serializable(Code) | | A serializable proxy that is bound into JNDI with a reference to the
RMI implementation of a SRPServerInterface. This allows a client to lookup
the interface and not have the RMI stub for the server as it will be downloaded
to them when the SRPServerProxy is unserialized.
author: Scott.Stark@jboss.org version: $Revision: 57210 $ |
Constructor Summary | |
| SRPServerProxy(SRPServerInterface server) Create a SRPServerProxy given the SRPServerInterface that method
invocations are to be delegated to. |
SRPServerProxy | SRPServerProxy(SRPServerInterface server)(Code) | | Create a SRPServerProxy given the SRPServerInterface that method
invocations are to be delegated to.
|
invoke | public Object invoke(Object proxy, Method method, Object[] args) throws Throwable(Code) | | The InvocationHandler invoke method. All calls are simply delegated to
the SRPServerInterface server object.
|
|
|