TimerNotification notification = new TimerNotification(type, this, 0, System.currentTimeMillis(), message, id);
notification.setUserData(userData);
if (logger.isEnabledFor(Logger.DEBUG)) logger.debug("Adding timer notification: " + notification + " on Timer service " + objectName);
TimerTask task = createTimerTask(notification, date, period, occurrences, fixedRate);
synchronized (this)
{
tasks.put(id, task);
}