1. /*
  2. * @(#)MonitoredObjectFactory.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. *
  15. * MonitoredObject Factory to create Monitored Object.
  16. * </p>
  17. */
  18. public interface MonitoredObjectFactory {
  19. /**
  20. * A Simple Factory Method to create the Monitored Object. The name
  21. * should be the leaf level name.
  22. */
  23. MonitoredObject createMonitoredObject( String name, String description );
  24. }