1 /*2 * @(#)MonitoredObjectFactory.java 1.2 03/12/193 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved.5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.6 */7 package com.sun.corba.se.spi.monitoring;8 9 /**10 * <p>11 *12 * @author Hemanth Puttaswamy13 * </p>14 * <p>15 *16 * MonitoredObject Factory to create Monitored Object. 17 * </p>18 */19 public interface MonitoredObjectFactory {20 /** 21 * A Simple Factory Method to create the Monitored Object. The name 22 * should be the leaf level name.23 */24 MonitoredObject createMonitoredObject( String name, String description );25 }26