how to re-init / update parameter of an interceptor during runtime?

2009-04-02 Thread Joe Lam
to change the interceptor behavior. thanks. Joe -- View this message in context: http://www.nabble.com/how-to-re-init---update-parameter-of-an-interceptor-during-runtime--tp22861150p22861150.html Sent from the Struts - User mailing list archive at Nabble.com

Re: how to re-init / update parameter of an interceptor during runtime?

2009-04-02 Thread Nils-Helge Garli Hegvik
blic void setParam01(String value){ >        param01= value; > } > > I wonder if it is possible to call again the setter method via API during > runtime to change the interceptor behavior. > > thanks. > > Joe > -- > View this message in context: > http://www.nabble.c

Re: how to re-init / update parameter of an interceptor during runtime?

2009-04-02 Thread Joe Lam
lue){ >>        param01= value; >> } >> >> I wonder if it is possible to call again the setter method via API during >> runtime to change the interceptor behavior. >> >> thanks. >> >> Joe >> -- >> View this message in context: >>

Re: how to re-init / update parameter of an interceptor during runtime?

2009-04-03 Thread musomesa
w this message in context: > http://www.nabble.com/how-to-re-init---update-parameter-of-an-interceptor-during-runtime--tp22861150p22861150.html > Sent from the Struts - User mailing list archive at Nabble.com. > > > --

Re: how to re-init / update parameter of an interceptor during runtime?

2009-04-03 Thread musomesa
also costs you time as your intercept() method now has that extra check. Chris M -Original Message- From: Joe Lam To: user@struts.apache.org Sent: Fri, 3 Apr 2009 2:48 am Subject: Re: how to re-init / update parameter of an interceptor during runtime? thx for your reply