On Thu, Aug 30, 2012 at 11:33 AM, me.mehta <[email protected]> wrote:
> Sorry for replying late on the thread.
> The custom bean as of now is very simple. Just getting and returning the
> list. I just wanted to check if its working before actually writing the code
> in custom bean. So its like
>
> public class SodFundListSplitter {
>
> public List<String> split(List<String> inputList) {
> return inputList;
> }
>
Can you try without the generics in the parameter list
public List<String> split(List inputList)
and
public List split(List inputList)
>
>
> --
> View this message in context:
> http://camel.465427.n5.nabble.com/Using-custom-bean-for-splitter-using-spring-camel-tp5718236p5718360.html
> Sent from the Camel - Users mailing list archive at Nabble.com.
--
Claus Ibsen
-----------------
FuseSource
Email: [email protected]
Web: http://fusesource.com
Twitter: davsclaus, fusenews
Blog: http://davsclaus.com
Author of Camel in Action: http://www.manning.com/ibsen