* @param me the managed object
* @throws Exception is thrown if error unregistering the managed object
*/
protected void unmanageObject(Object me) throws Exception {
if (timerListenerManager != null && me instanceof TimerListener) {
TimerListener timer = (TimerListener) me;
timerListenerManager.removeTimerListener(timer);
}
getManagementStrategy().unmanageObject(me);
}