KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > jboss > mx > remoting > LocationAware


1 /***************************************
2  * *
3  * JBoss: The OpenSource J2EE WebOS *
4  * *
5  * Distributable under LGPL license. *
6  * See terms of license at gnu.org. *
7  * *
8  ***************************************/

9 package org.jboss.mx.remoting;
10
11
12 /**
13  * LocationAware is an interface that can be implemented for objects that
14  * have an associated MBeanLocator and can be located via JMX Remoting.
15  *
16  * @author <a HREF="mailto:jhaynie@vocalocity.net">Jeff Haynie</a>
17  * @version $Revision: 30251 $
18  */

19 public interface LocationAware
20 {
21    /**
22     * return the mbean locator to the object
23     *
24     * @return
25     */

26    public MBeanLocator getMBeanLocator();
27 }
28
Popular Tags