Re: [appfuse-user] Custom Manager Problem

2007-04-19 Thread stelios
yes that was the problem I had: private PersonManagerImpl personManager instead of: private PersonManager personManager; sorted, thanks mraible wrote: > > Make sure PersonManagerImpl implements PersonManager and then use a > dependency on the Interface in your action: > > private PersonMan

Re: [appfuse-user] Custom Manager Problem

2007-04-13 Thread Matt Raible
Make sure PersonManagerImpl implements PersonManager and then use a dependency on the Interface in your action: private PersonManager personManager; public void setPersonManager(PersonManager personManager) { this.personManager = personManager; } Matt On 4/12/07, Stelios Togias <[EMAIL

[appfuse-user] Custom Manager Problem

2007-04-12 Thread Stelios Togias
Hi, I have changed applicationContext.xml(from the tutorial) to: now in person action I have changed: private PersonManagerImpl personManager; private List persons; public void setPersonManager(PersonManagerImpl personManager) { this.personManager = personManager; } and ad