You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@camel.apache.org by "Claus Ibsen (JIRA)" <ji...@apache.org> on 2009/01/22 09:21:59 UTC

[jira] Created: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

HeaderFilterStrategy - move from Component to Endpoint
------------------------------------------------------

                 Key: CAMEL-1289
                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
             Project: Apache Camel
          Issue Type: Task
            Reporter: Claus Ibsen
            Priority: Minor


I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.

When we do this we bypass the xxxComponent that can only be used with the URI configuration.
Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.

We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
and to default set it to some value to ease the spring bean configuration.




-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

William Tam reassigned CAMEL-1289:
----------------------------------

    Assignee: William Tam

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>            Priority: Minor
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work stopped: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on CAMEL-1289 stopped by William Tam.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>            Priority: Minor
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on CAMEL-1289 started by William Tam.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Resolved: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

William Tam resolved CAMEL-1289.
--------------------------------

    Resolution: Fixed

took care of camel-jhc (and camel-restlet).  Sorry about the hold up.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49397#action_49397 ] 

Claus Ibsen commented on CAMEL-1289:
------------------------------------

William I did fix a few of them as I needed it for CAMEL-505 and that we get this into the 2.0 API before we start releasing it.

Its okay if the filter is also on the component, so you can set a global filter that all endpoints inherit.

But if you are creating an endpoint manually (eg from spring xml using regular spring bean style) then it should be possible to set the filter if needed.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49393#action_49393 ] 

Claus Ibsen commented on CAMEL-1289:
------------------------------------

camel-cxf *TODO by Wiliam Tam*
camel-jms *DONE, is okay with both on component/endpoint for this complicated component*
camel-http *DONE*
camel-mail *DONE*
camel-xmpp *DONE*
camel-jhc
camel-restlet

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: Claus Ibsen
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Work started: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Work on CAMEL-1289 started by William Tam.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>            Priority: Minor
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=48900#action_48900 ] 

Claus Ibsen commented on CAMEL-1289:
------------------------------------

Great William

As I am working on letting all our Camel Components be configure using 100% spring bean style they need setters for all options.



> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>            Priority: Minor
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "William Tam (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=48899#action_48899 ] 

William Tam commented on CAMEL-1289:
------------------------------------

I was thinking of that when I was refactoring camel-cxf.  Camel-cxf's headerfilterstrategy has been moved to endpoint.  I can take on this task for other components.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Priority: Minor
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49393#action_49393 ] 

davsclaus edited comment on CAMEL-1289 at 2/12/09 6:33 AM:
-------------------------------------------------------------

camel-cxf *DONE by Wiliam Tam*
camel-jms *DONE, is okay with both on component/endpoint for this complicated component*
camel-http *DONE*
camel-mail *DONE*
camel-xmpp *DONE*
camel-jhc
camel-restlet *DONE, is to tied to the component, not possible*

      was (Author: davsclaus):
    camel-cxf *TODO by Wiliam Tam*
camel-jms *DONE, is okay with both on component/endpoint for this complicated component*
camel-http *DONE*
camel-mail *DONE*
camel-xmpp *DONE*
camel-jhc
camel-restlet *DONE, is to tied to the component, not possible*
  
> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49424#action_49424 ] 

Claus Ibsen commented on CAMEL-1289:
------------------------------------

@William

Thanks a lot for the help. Great to get the API settled in 2.0.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Issue Comment Edited: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=49393#action_49393 ] 

davsclaus edited comment on CAMEL-1289 at 2/12/09 6:28 AM:
-------------------------------------------------------------

camel-cxf *TODO by Wiliam Tam*
camel-jms *DONE, is okay with both on component/endpoint for this complicated component*
camel-http *DONE*
camel-mail *DONE*
camel-xmpp *DONE*
camel-jhc
camel-restlet *DONE, is to tied to the component, not possible*

      was (Author: davsclaus):
    camel-cxf *TODO by Wiliam Tam*
camel-jms *DONE, is okay with both on component/endpoint for this complicated component*
camel-http *DONE*
camel-mail *DONE*
camel-xmpp *DONE*
camel-jhc
camel-restlet
  
> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: Claus Ibsen
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen reassigned CAMEL-1289:
----------------------------------

    Assignee: Claus Ibsen  (was: William Tam)

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: Claus Ibsen
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Assigned: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen reassigned CAMEL-1289:
----------------------------------

    Assignee: William Tam  (was: Claus Ibsen)

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Updated: (CAMEL-1289) HeaderFilterStrategy - move from Component to Endpoint

Posted by "Claus Ibsen (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/activemq/browse/CAMEL-1289?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Claus Ibsen updated CAMEL-1289:
-------------------------------

         Priority: Major  (was: Minor)
    Fix Version/s: 2.0.0

Need to get this done for the 2.0 API changes.

> HeaderFilterStrategy - move from Component to Endpoint
> ------------------------------------------------------
>
>                 Key: CAMEL-1289
>                 URL: https://issues.apache.org/activemq/browse/CAMEL-1289
>             Project: Apache Camel
>          Issue Type: Task
>            Reporter: Claus Ibsen
>            Assignee: William Tam
>             Fix For: 2.0.0
>
>
> I am working on CAMEL-505 to allow 100% spring bean configuration of endpoints.
> When we do this we bypass the xxxComponent that can only be used with the URI configuration.
> Some components have the headerfilterstrategy that they pass down to the xxxEndpoint.
> We might wanna consider having getter/setter for headerfilterstrategy on the endpoint itself for spring bean configuration
> and to default set it to some value to ease the spring bean configuration.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.