Iterator lifecycleIds = lifecycleFactory.getLifecycleIds();
while (lifecycleIds.hasNext())
{
currentId = (String) lifecycleIds.next();
currentLifecycle = lifecycleFactory.getLifecycle(currentId);
currentLifecycle.removePhaseListener(phaseListener);
}
}
public static void registerPhaseListener(PhaseListener phaseListener)
{