1 16 17 package org.springframework.remoting.support; 18 19 import org.aopalliance.intercept.MethodInvocation; 20 21 28 public class DefaultRemoteInvocationFactory implements RemoteInvocationFactory { 29 30 public RemoteInvocation createRemoteInvocation(MethodInvocation methodInvocation) { 31 return new RemoteInvocation(methodInvocation); 32 } 33 34 } 35 | Popular Tags |