[Fortress] Manager instanciations

2014-10-31 Thread Emmanuel Lécharny
Hi guys, looking at the way we use the managers, we do create a new instance of each one of them everytime we need to execute some operation. Right now, we are creating an instance based on some code like : public static DelAdminMgr createInstance(String contextId) throws SecurityException

Re: [Fortress] Manager instanciations

2014-10-31 Thread Shawn McKinney
On 10/31/2014 08:28 AM, Emmanuel Lécharny wrote: looking at the way we use the managers, we do create a new instance of each one of them everytime we need to execute some operation. A new instance is created the first time needed and may be cached afterwards as it is merely a POJO. The