My guess is that you have entered the correct setter method in the
UserAction.java but at runtime the original org.appfuseUserAction code
is being run. This has has to do with how you have your project setup.
How are you getting UserAction.java into your projects source code? mvn
appfuse:fu
Have you defined a setter method on the UserAction called
setClientManager()?
Mike
On 27/03/2008, Robyn Sambo <[EMAIL PROTECTED]> wrote:
>
> Hello -
>
> *I'm working with Appfuse 2.0( Struts 2 Basic) and trying to add an
> instance of a custom manager class (clientManager) to
> org.appfuse.webap
Hello -
I'm working with Appfuse 2.0( Struts 2 Basic) and trying to add an
instance of a custom manager class (clientManager) to
org.appfuse.webapp.action.UserAction.
public void setClientManager(GenericManager
clientManager) {
this.clientManager = clientManager;
}
clientMan