Uses of Class
org.springframework.remoting.support.RemoteInvocation

Packages that use RemoteInvocation
org.springframework.remoting.httpinvoker Remoting classes for transparent Java-to-Java remoting via HTTP invokers.  
org.springframework.remoting.rmi Remoting classes for conventional RMI and transparent remoting via RMI invokers.  
org.springframework.remoting.support Support classes for remoting implementations.  
 

Uses of RemoteInvocation in org.springframework.remoting.httpinvoker
 

Methods in org.springframework.remoting.httpinvoker that return RemoteInvocation
protected  RemoteInvocation HttpInvokerServiceExporter.readRemoteInvocation(HttpServletRequest request)
          Read a RemoteInvocation from the given HTTP request.
protected  RemoteInvocation HttpInvokerServiceExporter.readRemoteInvocation(HttpServletRequest request, InputStream is)
          Deserialize a RemoteInvocation object from the given InputStream.
protected  RemoteInvocation HttpInvokerServiceExporter.doReadRemoteInvocation(ObjectInputStream ois)
          Perform the actual reading of an invocation result object from the given ObjectInputStream.
 

Methods in org.springframework.remoting.httpinvoker with parameters of type RemoteInvocation
protected  RemoteInvocationResult HttpInvokerClientInterceptor.executeRequest(RemoteInvocation invocation)
          Execute the given remote invocation via the HttpInvokerRequestExecutor.
 RemoteInvocationResult HttpInvokerRequestExecutor.executeRequest(HttpInvokerClientConfiguration config, RemoteInvocation invocation)
          Execute a request to send the given remote invocation.
 RemoteInvocationResult AbstractHttpInvokerRequestExecutor.executeRequest(HttpInvokerClientConfiguration config, RemoteInvocation invocation)
           
protected  ByteArrayOutputStream AbstractHttpInvokerRequestExecutor.getByteArrayOutputStream(RemoteInvocation invocation)
          Serialize the given RemoteInvocation into a ByteArrayOutputStream.
protected  void AbstractHttpInvokerRequestExecutor.writeRemoteInvocation(RemoteInvocation invocation, OutputStream os)
          Serialize the given RemoteInvocation to the given OutputStream.
protected  void AbstractHttpInvokerRequestExecutor.doWriteRemoteInvocation(RemoteInvocation invocation, ObjectOutputStream oos)
          Perform the actual writing of the given invocation object to the given ObjectOutputStream.
 

Uses of RemoteInvocation in org.springframework.remoting.rmi
 

Methods in org.springframework.remoting.rmi with parameters of type RemoteInvocation
protected  Object RmiServiceExporter.invoke(RemoteInvocation invocation, Object targetObject)
          Redefined here to be visible to RmiInvocationWrapper.
 Object RmiInvocationWrapper.invoke(RemoteInvocation invocation)
           
 Object RmiInvocationHandler.invoke(RemoteInvocation invocation)
          Apply the given invocation to the target object.
 

Uses of RemoteInvocation in org.springframework.remoting.support
 

Methods in org.springframework.remoting.support that return RemoteInvocation
protected  RemoteInvocation RemoteInvocationBasedAccessor.createRemoteInvocation(MethodInvocation methodInvocation)
          Create a new RemoteInvocation object for the given AOP method invocation.
 RemoteInvocation DefaultRemoteInvocationFactory.createRemoteInvocation(MethodInvocation methodInvocation)
           
 RemoteInvocation RemoteInvocationFactory.createRemoteInvocation(MethodInvocation methodInvocation)
          Create a serializable RemoteInvocation object from the given AOP MethodInvocation.
 

Methods in org.springframework.remoting.support with parameters of type RemoteInvocation
protected  Object RemoteInvocationBasedExporter.invoke(RemoteInvocation invocation, Object targetObject)
          Apply the given remote invocation to the given target object.
protected  RemoteInvocationResult RemoteInvocationBasedExporter.invokeAndCreateResult(RemoteInvocation invocation, Object targetObject)
          Apply the given remote invocation to the given target object, wrapping the invocation result in a serializable RemoteInvocationResult object.
 Object DefaultRemoteInvocationExecutor.invoke(RemoteInvocation invocation, Object targetObject)
           
 Object RemoteInvocationExecutor.invoke(RemoteInvocation invocation, Object targetObject)
          Perform this invocation on the given target object.
 



Copyright (C) 2003-2004 The Spring Framework Project.