1 22 23 package org.jboss.console.remote; 24 25 import javax.management.ObjectName ; 26 27 32 public class RemoteMBeanAttributeInvocation implements java.io.Serializable  33 { 34 public ObjectName targetObjectName = null; 35 public String attributeName = null; 36 37 public RemoteMBeanAttributeInvocation (ObjectName pName, 38 String attribute) 39 { 40 this.targetObjectName = pName; 41 this.attributeName = attribute; 42 } 43 44 45 } 46 | Popular Tags |