[
https://issues.apache.org/jira/browse/CAMEL-11137?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15965527#comment-15965527
]
Claus Ibsen commented on CAMEL-11137:
-------------------------------------
ExchangePattern is an enum
https://github.com/apache/camel/blob/master/camel-core/src/main/java/org/apache/camel/impl/DefaultEndpoint.java#L76
> @UriParam should support real enums
> -----------------------------------
>
> Key: CAMEL-11137
> URL: https://issues.apache.org/jira/browse/CAMEL-11137
> Project: Camel
> Issue Type: Bug
> Components: camel-core
> Reporter: Luca Burgazzoli
> Priority: Minor
> Fix For: 2.20.0
>
>
> As today the @UriParam supports enums as string which sometimes leads to
> stuffs like:
> {code:java}
> @UriParam(label = "producer", defaultValue = "put", enums =
> "put,putAll,putIfAbsent,putAsync,putAllAsync,putIfAbsentAsync,"
> + "get,"
> + "containsKey,containsValue,"
> + "remove,removeAsync,"
> + "replace,replaceAsync,"
> + "size,"
> + "clear,clearAsync,"
> + "query,stats")
> private String command;
> {code}
> It would be nice to support real enum so there's no need to manual update the
> @UriParam definition once the enums change, something like:
> {code:java}
> @UriParam(label = "producer", defaultValue = "put", enum =
> CommandsEnum.class)
> private String command;
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.15#6346)