Claus Ibsen created CAMEL-13725:
-----------------------------------
Summary: Endpoint DSL - Add to javadoc if an option is required
Key: CAMEL-13725
URL: https://issues.apache.org/jira/browse/CAMEL-13725
Project: Camel
Issue Type: Improvement
Components: camel-core
Reporter: Claus Ibsen
Fix For: 3.0.0, 3.0.0.M4
When an option has required=true in the metadata we should add that to the
endpoint DSL javadoc, eg
{code}
/**
* Whether the topic is persistent or non-persistent.
* The option is a <code>java.lang.String</code> type.
* @group common
*/
default PulsarEndpointConsumerBuilder persistence(String persistence) {
setProperty("persistence", persistence);
return this;
}
{code}
This option is required. Also not sure if @group is a valid javadoc syntax
--
This message was sent by Atlassian JIRA
(v7.6.3#76005)