[seam-issues] [JBoss JIRA] Created: (SEAMREST-2) Support validation of entire resources
Jozef Hartinger (JIRA)
jira-events at lists.jboss.org
Wed Oct 20 05:16:55 EDT 2010
Support validation of entire resources
--------------------------------------
Key: SEAMREST-2
URL: https://jira.jboss.org/browse/SEAMREST-2
Project: Seam RESTEasy
Issue Type: Feature Request
Components: Bean Validation
Affects Versions: Alpha2
Reporter: Jozef Hartinger
Provide support for the following use case:
@Path("/hello")
public class Resource
{
@QueryParam("name")
@Size(min = 5, max = 15)
private String name;
@GET
public String hello()
{
return "Hello " + name;
}
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: https://jira.jboss.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
More information about the seam-issues
mailing list