Package com.sun.corba.se.spi.monitoring
Interface MonitoredAttributeInfo
- All Known Implementing Classes:
MonitoredAttributeInfoImpl
public interface MonitoredAttributeInfo
- Author:
- Hemanth Puttaswamy
Monitored AttributeInfo contains the meta information of the Monitored Attribute.
-
Method Summary
Modifier and TypeMethodDescriptionGet's the description for the Monitored Attribute.booleanisStatistic() is true if the attribute is presented as a Statistic.booleanIf the Attribute is writable from ASAdmin then isWritable() will return true.type()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
-
Method Details
-
isWritable
boolean isWritable()If the Attribute is writable from ASAdmin then isWritable() will return true.
- Returns:
- a boolean with true or false
-
isStatistic
boolean isStatistic()isStatistic() is true if the attribute is presented as a Statistic.
- Returns:
- a boolean with true or false
-
type
Class type()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
- Returns:
- a Class Type
-
getDescription
String getDescription()Get's the description for the Monitored Attribute.
- Returns:
- a String with description
-