Re: getText from an interceptor

2009-02-26 Thread Zarar Siddiqi
If your actions are extending ActionSupport than you can go like so: public String intercept(ActionInvocation invocation) throws Exception { String message = ((ActionSupport) invocation.getAction()).getText("resource.key") ... } Zarar On Thu, Feb 26, 2009 at 12:23 PM, Security M

getText from an interceptor

2009-02-26 Thread Security Management
I have LoggedInInterceptor.java and LoggedInInterceptor.properties in a package, how do I use getText from the interceptor to read from the properties file? - To unsubscribe, e-mail: user-unsubscr...@struts.apache.org For addit