new AttributeChangeNotification(this, sequenceNumber++, new Date().getTime(),
"Attribute change", attrName,
newVal == null ? "" : newVal.getClass().getName(),
oldVal, newVal));
Agent agent = Globals.getAgent();
if (agent != null) {
agent.notifyServiceAttrUpdated(getName(), attrName, oldVal, newVal);
}
}