org.springframework.remoting.support
Class DefaultRemoteInvocationExecutor
java.lang.Object
   org.springframework.remoting.support.DefaultRemoteInvocationExecutor
org.springframework.remoting.support.DefaultRemoteInvocationExecutor
- All Implemented Interfaces: 
- RemoteInvocationExecutor
- public class DefaultRemoteInvocationExecutor 
- extends Object- implements RemoteInvocationExecutor
Default implementation of the RemoteInvocationExecutor interface.
 Simply delegates to RemoteInvocation's invoke method.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
- RemoteInvocation.invoke(java.lang.Object)
 
 
| Methods inherited from class java.lang.Object | 
| clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait | 
 
DefaultRemoteInvocationExecutor
public DefaultRemoteInvocationExecutor()
invoke
public Object invoke(RemoteInvocation invocation,
                     Object targetObject)
              throws NoSuchMethodException,
                     IllegalAccessException,
                     InvocationTargetException
- Description copied from interface: RemoteInvocationExecutor
- Perform this invocation on the given target object.
 Typically called when a RemoteInvocation is received on the server.
 
- 
- Specified by:
- invokein interface- RemoteInvocationExecutor
 
- 
- Parameters:
- invocation- the RemoteInvocation
- targetObject- the target object to apply the invocation to
- Returns:
- the invocation result
- Throws:
- NoSuchMethodException- if the method name could not be resolved
- IllegalAccessException- if the method could not be accessed
- InvocationTargetException- if the method invocation resulted in an exception
- See Also:
- Method.invoke(java.lang.Object, java.lang.Object...)
 
Copyright © 2002-2008 The Spring Framework.