1 22 23 package org.jboss.console.remote; 24 25 import javax.management.ObjectName ; 26 27 32 public class RemoteMBeanInvocation implements java.io.Serializable  33 { 34 public ObjectName targetObjectName = null; 35 public String actionName = null; 36 public Object [] params = null; 37 public String [] signature = null; 38 39 public RemoteMBeanInvocation (ObjectName pName, 40 String pActionName, 41 Object [] pParams, 42 String [] pSignature) 43 { 44 this.targetObjectName = pName; 45 this.actionName = pActionName; 46 this.params = pParams; 47 this.signature = pSignature; 48 } 49 50 51 } 52 | Popular Tags |