1 16 17 package org.springframework.remoting.rmi; 18 19 import java.lang.reflect.InvocationTargetException ; 20 import java.rmi.Remote ; 21 import java.rmi.RemoteException ; 22 23 import org.springframework.remoting.support.RemoteInvocation; 24 25 35 public interface RmiInvocationHandler extends Remote { 36 37 43 public String getTargetInterfaceName() throws RemoteException ; 44 45 56 public Object invoke(RemoteInvocation invocation) 57 throws RemoteException , NoSuchMethodException , IllegalAccessException , InvocationTargetException ; 58 59 } 60 | Popular Tags |