}
public void persistAlertStatus()
{
//XXX: Am I using _accessor too directly here?
AlertStatus alertStatus = _accessor.getProperty(_keyBuilder.alertStatus());
if (alertStatus == null) {
alertStatus = new AlertStatus(AlertStatus.nodeName); //TODO: fix naming of this record, if it matters
}
alertStatus.getRecord().setMapFields(_alertStatusMap);
boolean retVal = _accessor.setProperty(_keyBuilder.alertStatus(), alertStatus);
logger.debug("persistAlerts retVal: "+retVal);
}