Re: How to negate a Predicate?

2009-02-18 Thread Hadrian Zbarcea
than before. -- View this message in context: http://www.nabble.com/How-to-negate-a-Predicate--tp22049751s22882p22070670.html Sent from the Camel - Users mailing list archive at Nabble.com. -- Claus Ibsen Apache Camel Committer Open Source Integration: http://fusesource.com Blog: http://davsclaus.blogspot.com/

Re: How to negate a Predicate?

2009-02-17 Thread Claus Ibsen
y code now looks like this: > >choice(). > when(not(Builder. > header("foo"). > regex("cheese|whey"))) > > which is much easier to read than before. > -- > View this message in context: > http://www.nabble.

Re: How to negate a Predicate?

2009-02-17 Thread Trevv
rt.header. My code now looks like this: choice(). when(not(Builder. header("foo"). regex("cheese|whey"))) which is much easier to read than before. -- View this message in context: http://www.nabble.com/How-to-negate-a-Predica

Re: How to negate a Predicate?

2009-02-16 Thread Claus Ibsen
>choice(). > when(PredicateBuilder. > not(Builder. > header("foo"). > regex("cheese|whey"))) > -- > View this message in context: > http://www.nabble.com/How-to-negate-a-Predicate--tp22049751s22882

How to negate a Predicate?

2009-02-16 Thread Trevv
when(PredicateBuilder. not(Builder. header("foo"). regex("cheese|whey"))) -- View this message in context: http://www.nabble.com/How-to-negate-a-Predicate--tp22049751s22882p22049751.html Sent from the Camel - Users mailing list archive at Nabble.com.