/* * @(#)MonitoredAttributeInfo.java 1.2 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package com.sun.corba.se.spi.monitoring; import java.util.*; /** *

* * @author Hemanth Puttaswamy *

*

* Monitored AttributeInfo contains the meta information of the Monitored * Attribute. *

*/ public interface MonitoredAttributeInfo { /////////////////////////////////////// // operations /** *

* If the Attribute is writable from ASAdmin then isWritable() will return * true. *

*

* * @return a boolean with true or false *

*/ public boolean isWritable(); /** *

* isStatistic() is true if the attribute is presented as a Statistic. *

*

* * @return a boolean with true or false *

*/ public boolean isStatistic(); /** *

* Class Type: We will allow only basic class types: 1)Boolean 2)Integer * 3)Byte 4)Long 5)Float 6)Double 7)String 8)Character *

*

* * @return a Class Type *

*/ public Class type(); /** *

* Get's the description for the Monitored Attribute. *

*

* * @return a String with description *

*/ public String getDescription(); } // end MonitoredAttributeInfo