Nicolas Daniels created CXF-6332:
------------------------------------
Summary: Wadl Genertion: @Description cannot be bound to field
Key: CXF-6332
URL: https://issues.apache.org/jira/browse/CXF-6332
Project: CXF
Issue Type: Bug
Affects Versions: 3.0.4
Reporter: Nicolas Daniels
Priority: Minor
WadlGenerator seems to handle correctly @Description annotation on class level,
and so on class fields.
However the @Description cannot be assigned to Field:
@Target({java.lang.annotation.ElementType.TYPE,
java.lang.annotation.ElementType.METHOD,
java.lang.annotation.ElementType.PARAMETER})
Can you change this to:
@Target({java.lang.annotation.ElementType.TYPE,
java.lang.annotation.ElementType.METHOD,
java.lang.annotation.ElementType.PARAMETER,
java.lang.annotation.ElementType.FIELD})
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)