mirror of
https://github.com/apache/nifi.git
synced 2025-03-06 09:29:33 +00:00
NIFI-5180: update JMS additional details to set Destination Type to Required, default 'QUEUE'
Signed-off-by: Pierre Villard <pierre.villard.fr@gmail.com> This closes #2694.
This commit is contained in:
parent
22342a0e0c
commit
def9741a39
@ -78,7 +78,7 @@ abstract class AbstractJMSProcessor<T extends JMSWorker> extends AbstractProcess
|
||||
.build();
|
||||
static final PropertyDescriptor DESTINATION_TYPE = new PropertyDescriptor.Builder()
|
||||
.name("Destination Type")
|
||||
.description("The type of the JMS Destination. Could be one of 'QUEUE' or 'TOPIC'. Usually provided by the administrator. Defaults to 'TOPIC")
|
||||
.description("The type of the JMS Destination. Could be one of 'QUEUE' or 'TOPIC'. Usually provided by the administrator. Defaults to 'QUEUE'")
|
||||
.required(true)
|
||||
.allowableValues(QUEUE, TOPIC)
|
||||
.defaultValue(QUEUE)
|
||||
|
@ -46,8 +46,8 @@
|
||||
<li><b>Destination Name</b> - [REQUIRED] the name of the <i>javax.jms.Destination</i>.
|
||||
Usually provided by administrator (e.g., 'topic://myTopic').
|
||||
</li>
|
||||
<li><b>Destination Type</b> - [OPTIONAL] the type of the <i>javax.jms.Destination</i>. Could be one of 'QUEUE' or 'TOPIC'
|
||||
Usually provided by the administrator. Defaults to 'TOPIC'.
|
||||
<li><b>Destination Type</b> - [REQUIRED] the type of the <i>javax.jms.Destination</i>. Could be one of 'QUEUE' or 'TOPIC'
|
||||
Usually provided by the administrator. Defaults to 'QUEUE'.
|
||||
</li>
|
||||
<li><b>Connection Factory Service</b> - [REQUIRED] link to a pre-configured instance of org.apache.nifi.jms.cf.JMSConnectionFactoryProvider.
|
||||
</li>
|
||||
|
@ -49,8 +49,8 @@
|
||||
<li><b>Destination Name</b> - [REQUIRED] the name of the <i>javax.jms.Destination</i>.
|
||||
Usually provided by administrator (e.g., 'topic://myTopic').
|
||||
</li>
|
||||
<li><b>Destination Type</b> - [OPTIONAL] the type of the <i>javax.jms.Destination</i>. Could be one of 'QUEUE' or 'TOPIC'
|
||||
Usually provided by the administrator. Defaults to 'TOPIC'.
|
||||
<li><b>Destination Type</b> - [REQUIRED] the type of the <i>javax.jms.Destination</i>. Could be one of 'QUEUE' or 'TOPIC'
|
||||
Usually provided by the administrator. Defaults to 'QUEUE'.
|
||||
</li>
|
||||
<li><b>Connection Factory Service</b> - [REQUIRED] link to a pre-configured instance of org.apache.nifi.jms.cf.JMSConnectionFactoryProvider.
|
||||
</li>
|
||||
|
Loading…
x
Reference in New Issue
Block a user