I want to add Jax-ws annotations to my Javadocs for service interfaces, such as
@WebService(name = "CommentService", targetNamespace = "http://xxx.org/wsdl/comment")
@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
public interface CommentService extends DictionaryService {
public List<CommentTypeInfo> getCommentTypesForReferenceType(@WebParam(name="referenceTypeKey")String referenceTypeKey) throws DoesNotExistException;
Is there a Javadoc option, or Maven javadoc plugin option, or CXF or Metro option?