Re: How to get RouteId in a GenericFileFilter ...

2012-12-05 Thread Claus Ibsen
On Thu, Dec 6, 2012 at 8:46 AM, helmut.at.work wrote: > As explained in the thread above, I need a correlation to the route in the > GenericFileFilter. > You show me the way to set a property in the GenericFileFilter class with > spring. > For Java DSL I set this property with help of the constru

Re: How to get RouteId in a GenericFileFilter ...

2012-12-05 Thread Claus Ibsen
On Wed, Dec 5, 2012 at 4:47 PM, helmut.at.work wrote: > Sorry I'm a bit stupid today. > Of course I can set the property with a constructor like this: > > > Are there additional methods to set the properties? > What do you mean? Set properties on what? > Regards Helmut > > > > -- > View this mes

Re: How to get RouteId in a GenericFileFilter ...

2012-12-04 Thread Claus Ibsen
Hi This is not supported; and its not easy doable as its an API breaking to pass in any route information as a new parameter to the interface(s). You can create a generic filter and setup a number of filters with the route id configured. On Wed, Dec 5, 2012 at 8:42 AM, helmut.at

Re: How to get RouteId in a GenericFileFilter ...

2012-12-04 Thread helmut.at.work
Please excuse my poor description of the problem. Second try: In my application I would like to implement a filter for a file consumer, like that: I plan to code a general filter for all/some of my routes. In the filter method I do in the first run something like this: No problem so far. But now

Re: How to get RouteId in a GenericFileFilter ...

2012-12-04 Thread Christian Müller
I don't think I (and other users) understand what you try to do. Could you share an example with us? Best, Christian On Tue, Dec 4, 2012 at 9:07 PM, helmut.at.work wrote: > appreciated