Hi there,
I would like to create a validation with annotation.
consider the following case:
@Validation
public class AddCaseAction
{
private Registration registration;
.
.
.
public String addNewRegistration()
{
//do something
return "success";
}
// get and setRegistration here
}
assuming registration is composed of fname, lname, ss, dob and except dob
all fields are mandatory.
Question: how do I make sure those fields will be input? should I have
something like:
@RequiredStringValidator(message="Legal Name is missing")
private setFname(String fn)
on the registration - if so - wouldn't that effect other classes that uses
registration???
thanks for any input!
--
View this message in context:
http://www.nabble.com/validation-with-annotation-tp15966492p15966492.html
Sent from the Struts - User mailing list archive at Nabble.com.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]