Here is my Actionmapping class using the property loginRequired :
package com.ex.struts;
import org.apache.struts.action.ActionMapping;
public class EmployesActionMapping extends ActionMapping {
private static final long serialVersionUID = 1L;
protected boolean loginRequired = false;
public void setLoginRequired(boolean loginRequired) {
this.loginRequired = loginRequired;
}
public boolean getLoginRequired() {
return loginRequired;
}
}
-----Message d'origine-----
De : Dave Newton [mailto:[EMAIL PROTECTED]
Envoyé : jeudi 8 juin 2006 15:19
À : Struts Users Mailing List
Objet : Re: struts-config xml file throws a java exception
Olivier Bex wrote:
> LoginRequired is referenced in the action tags of each action.
>
I may have missed it, but did you provide the source for your custom
ActionMapping class that you are expecting the <set-property...> element
to act upon? (If you didn't, or haven't sub-classed ActionMapping or
aren't using somebody else's custom ActionMapping, consider this a hint ;)
Dave
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]