You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are using jax-doclets to generate documentation from Java code and RESTeasy. Noticed that @Form annotated parameters appear as String in the generated documentation. For example:
and we tried to add this optional RESTeasy dependency in the pom.xml, several times, at different places in the pom.xml - inside the for the JAXRSDoclet and outside of it, but none seems to work.
Can you please give an example how and where the optional RESTeasy dependency should be used in order to generate proper documentation for a @Form annotated parameter object.
Thank you.
Regards
The text was updated successfully, but these errors were encountered:
We are using jax-doclets to generate documentation from Java code and RESTeasy. Noticed that @Form annotated parameters appear as String in the generated documentation. For example:
@get
ResponseObjectClass someMethod(@Form RequestObjectClass request) { ... }
appears as:
Input:
String
Output:
ResponseObjectClass
in the generated documentation.
On page http://fromage.github.com/jax-doclets/docs/0.10.0/html/index.html is said:
"3.5 Supported RESTEasy JAX-RS extension annotations
If the optional RESTEasy dependency is present, the following RESTEasy annotations are supported on resource methods or classes:
@Form"
and we tried to add this optional RESTeasy dependency in the pom.xml, several times, at different places in the pom.xml - inside the for the JAXRSDoclet and outside of it, but none seems to work.
Can you please give an example how and where the optional RESTeasy dependency should be used in order to generate proper documentation for a @Form annotated parameter object.
Thank you.
Regards
The text was updated successfully, but these errors were encountered: