Example usage for org.springframework.remoting.support RemoteInvocation subclass-usage

List of usage examples for org.springframework.remoting.support RemoteInvocation subclass-usage

Introduction

In this page you can find the example usage for org.springframework.remoting.support RemoteInvocation subclass-usage.

Usage

From source file org.apache.mina.springrpc.ReturnAddressAwareRemoteInvocation.java

/**
 * 
 * @author politics wang
 * @since 2008-11-25
 * 
 */

From source file org.logicblaze.lingo.LingoInvocation.java

/**
 * Extends the Spring remote invocation bean to add the extra Lingo metadata
 *
 * @version $Revision: 44 $
 */
public class LingoInvocation extends RemoteInvocation {

From source file org.acegisecurity.context.rmi.ContextPropagatingRemoteInvocation.java

/**
 * The actual <code>RemoteInvocation</code> that is passed from the client to the server, which contains the
 * contents of {@link SecurityContextHolder}, being a {@link SecurityContext} object.<p>When constructed on the
 * client via {@link org.acegisecurity.context.rmi.ContextPropagatingRemoteInvocationFactory}, the contents of the
 * <code>SecurityContext</code> are stored inside the object. The object is then passed to the server that is
 * processing the remote invocation. Upon the server invoking the remote invocation, it will retrieve the passed

From source file org.springframework.security.remoting.rmi.ContextPropagatingRemoteInvocation.java

/**
 * The actual {@code RemoteInvocation} that is passed from the client to the server.
 * <p>
 * The principal and credentials information will be extracted from the current security
 * context and passed to the server as part of the invocation object.
 * <p>