Hi
I need to clarify how to implement the PhaseListener class. Below are two different overriding implementations for PhaseListener.getPhaseId
@Override
public PhaseId getPhaseId() {
return PhaseId.ANY_PHASE;
}
and
@Override
public PhaseId getPhaseId() {
return PhaseId.RESTORE_VIEW;
}
What could be a significant difference in these two implementations ?. What will be the impact?
source
share