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