Validator + Action Struts

opa!

galera se eu coloco no struts.xml isso:

<action name="addCliente!*" method="{1}" class="AddClienteAction"> <result name="frm">addCliente.jsp</result> <result name="input">addCliente.jsp</result> <result name="success">success.jsp</result> <result name="fail">fail.jsp</result> </action>

e na classe addCliente tiver uma metodo assim

@RequiredStringValidator(type= ValidatorType.SIMPLE, fieldName="razaoSocial", trim = true, message = "Razao Social: Campo obrigatório.") public String getRazaoSocial() { return razaoSocial; }

Dá erro alguem sabe me dizer porque?

Ou como posso fazer isso funcionar?

abraço