Re: Instance of org.apache.struts.action.Action class. Share instance

2005-04-21 Thread Leon Rosenberg
> hi, > > Am I correct that only one Action instance is being created > by the server?. I mean all users/threads share the same > instance? yes >Base on this I surmise that if I extend Action like that: > public abstract class MyAction extends Action { > > protected static final IAuthorizer

Re: Instance of org.apache.struts.action.Action class. Share instance

2005-04-21 Thread Leon Rosenberg
> hi, > > Am I correct that only one Action instance is being created > by the server?. I mean all users/threads share the same > instance? yes >Base on this I surmise that if I extend Action like that: > public abstract class MyAction extends Action { > > protected static final IAuthorizer

Instance of org.apache.struts.action.Action class. Share instance

2005-04-21 Thread Grzegorz Stasica
hi, Am I correct that only one Action instance is being created by the server?. I mean all users/threads share the same instance? Base on this I surmise that if I extend Action like that: public abstract class MyAction extends Action { protected static final IAuthorizer auth=new MyAuthorizer();