/**
* Get type of the specified monitored attribute.
*/
public MonitoredAttributeType getAttributeType(String attrName) {
MonitoredAttributeType type = null;
if (attrNameTypeMap != null && attrName != null) {
type = (MonitoredAttributeType)attrNameTypeMap.get(attrName);
}
return type;
}