RemoteMBeanAttributeInvocation.java |
/* * JBoss, the OpenSource J2EE webOS * * Distributable under LGPL license. * See terms of license at gnu.org. */ package org.jboss.console.remote; import javax.management.ObjectName; /** * Stupid JMX invocation implementation. Should support attributes as well, etc. * * @author Sacha Labourey */ public class RemoteMBeanAttributeInvocation implements java.io.Serializable { static final long serialVersionUID = 6592113867540285376L; public ObjectName targetObjectName = null; public String attributeName = null; public RemoteMBeanAttributeInvocation (ObjectName pName, String attribute) { this.targetObjectName = pName; this.attributeName = attribute; } }
RemoteMBeanAttributeInvocation.java |