You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by "Shelly Liu (JIRA)" <ji...@apache.org> on 2017/03/03 03:39:46 UTC

[jira] [Comment Edited] (NIFI-3543) Add support for using EL when defining 'brokerURL' in jms-cf-service

    [ https://issues.apache.org/jira/browse/NIFI-3543?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15893680#comment-15893680 ] 

Shelly Liu edited comment on NIFI-3543 at 3/3/17 3:39 AM:
----------------------------------------------------------

I think it is a bug as the doc says it supports expression language. And I figure the property definition dose claim that it supports EL.
public static final PropertyDescriptor BROKER_URI = new PropertyDescriptor.Builder()
            .name(BROKER)
            .displayName("Broker URI")
            .description("URI pointing to the network location of the JMS Message broker. For example, "
                      + "'tcp://myhost:61616' for ActiveMQ or 'myhost:1414' for IBM MQ")
            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
            .required(true)
            .expressionLanguageSupported(true)
            .build();

Thank you for your comments. I'll address the ELSE and account for the possibility of null. 


was (Author: shelly_lc):
I think it is a bug as the doc says it supports expression language. And I figure the property definition dose claim it supports EL.
public static final PropertyDescriptor BROKER_URI = new PropertyDescriptor.Builder()
            .name(BROKER)
            .displayName("Broker URI")
            .description("URI pointing to the network location of the JMS Message broker. For example, "
                      + "'tcp://myhost:61616' for ActiveMQ or 'myhost:1414' for IBM MQ")
            .addValidator(StandardValidators.NON_EMPTY_VALIDATOR)
            .required(true)
            .expressionLanguageSupported(true)
            .build();

Thank you for your comments. I'll address the ELSE and account for the possibility of null. 

> Add support for using EL when defining 'brokerURL' in jms-cf-service
> --------------------------------------------------------------------
>
>                 Key: NIFI-3543
>                 URL: https://issues.apache.org/jira/browse/NIFI-3543
>             Project: Apache NiFi
>          Issue Type: Bug
>    Affects Versions: 1.1.0, 1.1.1
>            Reporter: Shelly Liu
>            Priority: Minor
>             Fix For: 1.2.0
>
>




--
This message was sent by Atlassian JIRA
(v6.3.15#6346)