"gcoleman" wrote : It looks like your class
com.fabulous_valley.web.MyPhaseListener does implement the PhaseListener interface.
this code of MyPhaseListener :
| package com.fabulous_valley.web;
|
|
| import javax.faces.event.PhaseListener;
| import javax.faces.event.PhaseEvent;
| import javax.faces.event.PhaseId;
|
| public class MyPhaseListener implements PhaseListener {
| public void afterPhase(PhaseEvent event) {}
|
| public void beforePhase(PhaseEvent event) {
| final PhaseId phase = event.getPhaseId();
| // ... some code ...
| }
|
| public PhaseId getPhaseId() {
| return PhaseId.ANY_PHASE;
| }
| }
|
View the original post :
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4028806#...
Reply to the post :
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&a...