see i am using the following query with jbpm
select involog from org.jbpm.model.log.impl.ExecutionLogImpl exelog , org.jbpm.model.log.impl.InvocationLogImpl involog where exelog.invocationLog=involog.id and involog.serviceMethod='endOfState' and involog.actorId=:user
and it is working fine ...
but when using
jbpmquery=new JbpmQuery( "select involog.actorId,involog.id from org.jbpm.model.log.impl.ExecutionLogImpl exelog , org.jbpm.model.log.impl.InvocationLogImpl involog where exelog.invocationLog=involog.id and involog.serviceMethod='endOfState' and involog.actorId=:user ");
i doenot receive corrcet results
when i printed the list retrieved it gives ..
16:07:57,187 INFO [STDOUT] [Ljava.lang.Object;@107e4bc
16:07:57,187 INFO [STDOUT] [Ljava.lang.Object;@139f953
16:07:57,203 INFO [STDOUT] [Ljava.lang.Object;@11fb8c6
16:07:57,203 INFO [STDOUT] [Ljava.lang.Object;@19bd1ca
can any one help ..
|