You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@camel.apache.org by "Claus Ibsen (Jira)" <ji...@apache.org> on 2022/09/02 15:52:00 UTC

[jira] [Resolved] (CAMEL-15404) Box Endpoint DSL missing options for most api methods

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

Claus Ibsen resolved CAMEL-15404.
---------------------------------
    Resolution: Won't Fix

> Box Endpoint DSL missing options for most api methods
> -----------------------------------------------------
>
>                 Key: CAMEL-15404
>                 URL: https://issues.apache.org/jira/browse/CAMEL-15404
>             Project: Camel
>          Issue Type: Improvement
>          Components: camel-box, tooling
>    Affects Versions: 3.4.2
>            Reporter: Michael Genereux
>            Assignee: Claus Ibsen
>            Priority: Major
>             Fix For: 3.x
>
>
> Looking in [https://github.com/apache/camel/blob/master/components/camel-box/camel-box-component/src/generated/resources/org/apache/camel/component/box/box.json], none of the URI options for the different box API methods are available to the Endpoint DSL generator.  I don't know if there's an "escape valve" to allow me to apply non-typesafe options if the typesafe one is not available. Maybe it's a bug if the options are just not there.
> Here's the endpoint I expected to write:
> {code:scala}
> object BoxRouteBuilder extends RouteBuilder() {
>   override def configure(): Unit = {
>     from(timer("box_start").repeatCount(1))
>     .to(box("folders/getFolderItems").folderId("12345678")
>     .to(kafka("box_file_list")
>   }
> }{code}
> but instead I had to write this working code:
> {code:scala}
> object BoxRouteBuilder extends RouteBuilder() {
>   override def configure(): Unit = {
>     from(timer("box_start").repeatCount(1))
>     .to("box:folders/getFolderItems?folderId=12345678")
>     .to(kafka("box_file_list")
>   }
> }{code}



--
This message was sent by Atlassian Jira
(v8.20.10#820010)