KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > ejtools > jmx > ObjectNameFinder


1 /*
2  * EJTools, the Enterprise Java Tools
3  *
4  * Distributable under LGPL license.
5  * See terms of license at www.gnu.org.
6  */

7 package org.ejtools.jmx;
8
9
10 /**
11  * Interface implemented by structure that allows ObjectName search by canonical string.
12  *
13  * @author Laurent Etiemble
14  * @version $Revision: 1.7 $
15  */

16 public interface ObjectNameFinder
17 {
18    /**
19     * Search an ObjectName by its canonical string
20     *
21     * @param objectName Canonical value of the ObjectName to search
22     */

23    public void findObjectName(String JavaDoc objectName);
24 }
25
Popular Tags