/*************************************** * * * JBoss: The OpenSource J2EE WebOS * * * * Distributable under LGPL license. * * See terms of license at gnu.org. * * * ***************************************/ package org.jboss.mx.util; import javax.management.MBeanServer; import javax.management.ObjectName; /** * An interface which exposes the attributes of a {@link org.jboss.mx.util.MBeanProxyExt} * instance. * * @author Jason Dillon * @version $Revision: 1.1.2.1 $ */ public interface MBeanProxyInstance { /** * Return the ObjectName for this proxy. * * @return The ObjectName for this proxy. */ ObjectName getMBeanProxyObjectName(); /** * Return the MBeanServer for this proxy. * * @return The ObjectName for this proxy. */ MBeanServer getMBeanProxyMBeanServer(); }