Package com.sun.corba.se.spi.monitoring
Class LongMonitoredAttributeBase
java.lang.Object
com.sun.corba.se.spi.monitoring.MonitoredAttributeBase
com.sun.corba.se.spi.monitoring.LongMonitoredAttributeBase
- All Implemented Interfaces:
MonitoredAttribute
- Author:
- Hemanth Puttaswamy
A Cleaner Abstraction to provide a Monitored Attribute of type 'Long'
-
Constructor Summary
ConstructorsConstructorDescriptionLongMonitoredAttributeBase(String name, String description) Constructs LongMonitoredAttribute, by creating the MonitoredAttributeInfo with 'Long' as the class type. -
Method Summary
Methods inherited from class com.sun.corba.se.spi.monitoring.MonitoredAttributeBase
clearState, getAttributeInfo, getName, getValue, setValue
-
Constructor Details
-
LongMonitoredAttributeBase
Constructs LongMonitoredAttribute, by creating the MonitoredAttributeInfo with 'Long' as the class type. Users are expected to extend this class and provide the implementation for getValue() and if needed clearState() as well.
- Parameters:
name- of tthe MonitoredAttributedescription- of the Attribute, Please provid a well thought out description, so that the admin can make sense of the attribute supplied.
-