Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.

addCondition() usage?

Avatar

Former Community Member
I was wondering if anyone could provide an example of how to use the addCondition function of a TaskSearchFilter object. What I'm specifically trying to do is to search based on a process id. Am I supposed to use a TaskSearchingConstants object with this?



Thanks!
3 Replies

Avatar

Level 10
filter.addCondition(TaskSearchingUtil.pDESCRIPTION,Operator.EQUALS, "Test");



Jasmin

Avatar

Former Community Member

Hi Jasmin,

I am using the addCondition(String, Operator, Object) for setting the State of a process as INITIAL.

For ex: filter.addCondition("state", Operator.EQUALS, "INITIAL");

Now when I run the application, I am getting a InvocationTargetException. Would you please let me know whether I am following a correct approach?