Re: [appfuse-user] adding manager class to UserAction.java

2008-03-31 Thread dusty
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

Re: [appfuse-user] adding manager class to UserAction.java

2008-03-28 Thread Michael Horwitz
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

[appfuse-user] adding manager class to UserAction.java

2008-03-27 Thread Robyn Sambo
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