1. /*
  2. * @(#)MonitoredAttributeInfoFactory.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. * MonitoredAttributeInfoFactory used mostly by internal classes. If the
  15. * User needs to define some special MonitoredAttributes like a Character
  16. * type Monitored Attribute, they can use this factory to build the meta
  17. * information.
  18. *
  19. * </p>
  20. */
  21. public interface MonitoredAttributeInfoFactory {
  22. /**
  23. * A Simple Factory Method to create the Monitored Attribute Info.
  24. */
  25. MonitoredAttributeInfo createMonitoredAttributeInfo( String description,
  26. Class type, boolean isWritable, boolean isStatistic );
  27. }