how can I filter AuditQuery using AND / OR?

I can simple do (name = 'John' and address is not null):

query.add(AuditEntity.property("name").eq("John"));
query.add(AuditEntity.property("address").isNotNull); 

But how can I do (name = 'John' and address is not null) or (job = 'Director' and carColor = 'Green')

link|improve this question

40% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.