Hi,
I am not aware of such plugins but here are some thoughts regarding your use
cases.
asgc> 1. Generated Java classes from XSD
Not sure if it is possible. In general, Swagger is able to use POJOs without
the need to add annotations explicitly. Is it some kind of well-known /
standardized
XSD schema? Or purely custom one?
asgc> 2. Generated REST API classes from WADL.
In general, Swagger-based integrations do not need annotations and could
discover the
APIs just from the JAX-RS annotations (though the amount of details would be
limited).
Another option could be to convert WADL to OpenAPI 2.x / 3.x (there are tools
to do that)
and use Swagger Codegen to generate classes (they will be annotated).
Best Regards,
Andriy Redko
asgc> Hi,
asgc> I am trying to find a way to add Swagger annotations like @ApiOperation,
@ApiModel and @ApiModelProperty to
asgc> 1. Generated Java classes from XSD
asgc> 2. Generated REST API classes from WADL.
asgc> Is there any way to do it in CXF using the XJC or codegen plugin? Please
help