[jbosstools-issues] [JBoss JIRA] (JBIDE-17391) Provide JAX-RS Fields type validation

Xavier Coulon (JIRA) issues at jboss.org
Thu May 22 20:44:56 EDT 2014


Xavier Coulon created JBIDE-17391:
-------------------------------------

             Summary: Provide JAX-RS Fields type validation
                 Key: JBIDE-17391
                 URL: https://issues.jboss.org/browse/JBIDE-17391
             Project: Tools (JBoss Tools)
          Issue Type: Feature Request
          Components: webservices
    Affects Versions: 4.1.0.Final
            Reporter: Xavier Coulon
            Assignee: Xavier Coulon
             Fix For: 4.2.0.Beta2


>From JAX-RS 1.1 spec (chap 3.2):
{quote}
1. Primitive types.
2. Types that have a constructor that accepts a single String argument.
3. Types that have a static method named valueOf or fromString with a single String argument that return an instance of the type. If both methods are present then valueOf MUST be used unless the type is an enum in which case fromString MUST be used.
4. List<T>, Set<T>, or SortedSet<T>, where T satisfies 2 or 3 above.
{quote}

JAX-RS 2.0 introduced the notion of ParamConverterProvider:
{quote}
Valid parameter types for each of the above annotations are listed in the corresponding Javadoc, however in general (excluding @Context) the following types are supported:
1. Types for which a ParamConverter is available via a registered ParamConverterProvider. See Javadoc for these classes for more information.
2. Primitive types.
3. Types that have a constructor that accepts a single String argument.
4. Types that have a static method named valueOf or fromString with a single String argument that return an instance of the type. If both methods are present then valueOf MUST be used unless the type is an enum in which case fromString MUST be used1.
5. List<T>, Set<T>, or SortedSet<T>, where T satisfies 3 or 4 above.
{quote}



--
This message was sent by Atlassian JIRA
(v6.2.3#6260)


More information about the jbosstools-issues mailing list