1 /* 2 * @(#)MonitoringManagerFactory.java 1.2 03/12/19 3 * 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 Puttaswamy 13 * </p> 14 * <p> 15 * MonitoringObjectFactory is used internally by the ORB, It is not for 16 * general public use. 17 * </p> 18 */ 19 public interface MonitoringManagerFactory { 20 /** 21 * A Simple Factory Method to create the Monitored Attribute Info. 22 */ 23 MonitoringManager createMonitoringManager( String nameOfTheRoot, 24 String description ); 25 } 26