1 8 9 package org.jboss.remoting.invocation; 10 11 import java.io.Serializable ; 12 13 19 public class RemoteInvocation implements Serializable  20 { 21 static final long serialVersionUID = -5420149048705763388L; 22 23 protected final String methodName; 24 protected final Object [] params; 25 26 public RemoteInvocation(final String methodName, final Object [] params) 27 { 28 this.methodName = methodName; 29 this.params = params; 30 } 31 32 public String getMethodName() 33 { 34 return methodName; 35 } 36 37 public Object [] getParameters() 38 { 39 return params; 40 } 41 } 42 | Popular Tags |