Hi
Is there a supported way of querying for running process instances
that have a variables with a specific value? Either, in the simplest
case a simple variable (e.g. a String), or perhaps some custom class.
For example, let's say we have this class:
public class Bar {
private String foo;
public String getFoo() {
return foo;
}
public void setFoo(String foo) {
this.foo = foo;
}
}
For each process instance, we persist an instance of the Bar class
(using a Hibernate mapping) and add it as a variable. Now, is there a
way to find all current instances where foo=="xxx"?
/niklas
Show replies by date