Re: Reg. Forward and set-property.

2005-04-21 Thread Joe Germuska
The property should be set on your ActionForward, and you should be able to do this: ActionForward f = mapping.findForward("NameOfForward"); SubClassOfActionForward scoaf = (SubClassOfActionForward) f; if (!("TitleForThePage".equals(scoaf.getPageTitle)) throw new IllegalStateException("What did

Reg. Forward and set-property.

2005-04-21 Thread Iyanu, Rajasekaran
Hi, This is regarding the forward declarations of the action mapping tags in Struts-config xml, For instance, in the below tag, a property is defined for "pagetitle". The question here is , * In which object this "pageTitle" property will be available