1 /*2 * EJTools, the Enterprise Java Tools3 *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 Etiemble14 * @version $Revision: 1.7 $15 */16 public interface ObjectNameFinder17 {18 /**19 * Search an ObjectName by its canonical string20 *21 * @param objectName Canonical value of the ObjectName to search22 */23 public void findObjectName(String objectName);24 }25