[ 
https://issues.apache.org/jira/browse/CAMEL-11137?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Luca Burgazzoli closed CAMEL-11137.
-----------------------------------
    Resolution: Invalid

> @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)

Reply via email to