Hello Lorenzo,

thanks for your time.

On Fri, Jul 12, 2024 at 03:01:25PM +0200, Lorenzo Di Cola wrote:
...
Analyzing your problem I do not think the issue could be creating users
from AnyObject workflow, maybe could be "how" the workflow is set in order
to create users.
Making some code changes could be easier to see the console with errors,
it's easy to create some misconfigurations. In order to solve you should
try to divide  if the problem is on Console side or Core side; in order to
know that you can see if you're able to make some operation via Swagger UI
on [syncope_base_url]/syncope/ (oh, I'm assuming you're using the latest
version 3 of Syncope).

I am using version 3.0.7.

Just to be sure, I now made a REST call to create an instance of anyType "myAny":

_class: org.apache.syncope.common.lib.request.AnyObjectCR
realm: /
name: test
type: myAny

The result is exactly the same. I see "While setting user status: unexpected task number (0)" in the log, and the user's status is null.

I would have been surprised if it had been otherwise. The console uses the REST API, after all, and it is a single request. Everything else (flow, creating the user) happens in the core only.

I'm thinking about some misconfiguration seeing the status unset too, if
you can see from the vanilla Syncope with vanilla workflow the status is
always set.

Mind: The user workflow I am using is the vanilla one, I just added the anyObject workflow. And when I create a user directly (not from within the anyObject workflow), everything works as expected (user's status is "active", console is usable).

In order to see some more information about the issue I think you can
increase the log level for sure for flowable and see if you have some
errors here.

The flow looks good. No errors, and the only warning I get is "While setting user status: unexpected task number (0)". I attached this part of the log. Maybe you can see something I cannot.

It's too hard trying to solve without the real environment unfortunately,
this type of issue should be tried under my hands with your own code.

If you are willing to take a try I am would provide you some code. Should I send it to the mailing list or privately?

Best Regards,

Stephan

Il giorno gio 11 lug 2024 alle ore 15:44 Feder, Stephan <
stephan.fe...@tu-darmstadt.de> ha scritto:

Hello,

while evaluating syncope a problem has come up: I want to create users
from
within anyObject workflow but it does not work as expected. In detail:

I have implemented

1. a FlowableAnyObjectWorkflowAdapter which is based on the existing
FlowableUserWorkflowAdapter,

2. a task for creating anyObjects which based on the existing Create task,

3. an anyType

---
key: "myAny"
kind: "ANY_OBJECT"
classes: []

4. the task

public class CreateUser extends FlowableServiceTask {

     private final UserWorkflowAdapter userWorkflowAdapter;

     public CreateUser(final UserWorkflowAdapter userWorkflowAdapter) {
         this.userWorkflowAdapter = userWorkflowAdapter;
     }

     @Override
     protected void doExecute(final DelegateExecution execution) {
         userWorkflowAdapter.create(
             new UserCR.Builder("/", "test").build(),
             "creator",
             "context"
         );
     }
}

for creating users and

5. a workflow for anyObjects (ids of edges are removed)

<process id="anyObjectWorkflow" name="anyObjectWorkflow"
isExecutable="true">
   <startEvent id="startevent1" name="Start"
flowable:formFieldValidation="true"/>
   <sequenceFlow sourceRef="startevent1" targetRef="createAnyObject"/>
   <serviceTask id="createAnyObject" name="Create AnyObject"
flowable:delegateExpression="${createAnyObject}"/>
   <sequenceFlow sourceRef="createAnyObject" targetRef="createUser"/>
   <serviceTask id="createUser" name="Create User"
flowable:delegateExpression="${createUser}"/>
   <sequenceFlow sourceRef="createUser" targetRef="active"/>
   <userTask id="active" name="Active"
flowable:formFieldValidation="true"/>
   <sequenceFlow sourceRef="active" targetRef="endevent1"/>
   <endEvent id="endevent1" name="End"/>
</process>

which, on create, creates the anyObject and additionally a user and stops
in a user task.

In the console, adding an instance of anyType "myAny" completes
successfully but afterwards the console becomes partially unusable:

1. Opening the realms view gives Unexpected RuntimeException

Last cause: Unexpected character ('<' (code 60)): expected a valid value
(JSON String, Number, Array, Object or token 'null', 'true' or 'false')
  at [Source:
(org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduit$AsyncWrappedOutputStream$7);
line: 1, column: 2]
WicketMessage: Error attaching this container for rendering:
[WebMarkupContainer [Component id = body]]

2. Trying to log in I always get "Wrong username and/or password".

This seems to by caused by

DEBUG [IO-1 task-2] org.springframework.security.web.FilterChainProxy
      : Secured GET /actuator/info/
DEBUG [IO-1 task-2]
ot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping : Mapped to
Actuator web endpoint 'info'
WARN [IO-1 task-2]
work.web.servlet.mvc.support.DefaultHandlerExceptionResolver : Resolved
[org.springframework.http.converter.HttpMessageNotWritableException: Could
not write JSON: Null key for a Map not allowed in JSON (use a converting
NullKeySerializer?); nested exception is
com.fasterxml.jackson.databind.JsonMappingException: Null key for a Map not
allowed in JSON (use a converting NullKeySerializer?) (through reference
chain:
java.util.Collections$UnmodifiableMap["numbers"]->org.apache.syncope.common.lib.info.NumbersInfo["usersByStatus"])]

which in turn is caused by the user's status being null:

{
   "_class": "org.apache.syncope.common.lib.to.UserTO",
   "key": "0190a1f1-4a18-7066-8783-278d63e87abd",
   "type": "USER",
   "realm": "/",
   "username": "test",
   "creator": "creator",
   "creationDate": "2024-07-11T13:17:43.953038683Z",
   "creationContext": "context",
   "lastModifier": "creator",
   "lastChangeDate": "2024-07-11T13:17:43.953038683Z",
   "lastChangeContext": "context",
   "dynRealms": [],
   "status": null,
   "auxClasses": [],
   "plainAttrs": [],
   "derAttrs": [],
   "virAttrs": [],
   "resources": [],
   "password": null,
   "token": null,
   "tokenExpireTime": null,
   "lastLoginDate": null,
   "changePwdDate": null,
   "failedLogins": 0,
   "securityQuestion": null,
   "securityAnswer": null,
   "suspended": false,
   "mustChangePassword": false,
   "relationships": [],
   "memberships": [],
   "dynMemberships": [],
   "roles": [],
   "dynRoles": [],
   "privileges": [],
   "linkedAccounts": [],
   "delegatingDelegations": [],
   "delegatedDelegations": []
}

And in fact, the status is never set:

WARN [IO-1 task-2]
org.apache.syncope.core.flowable.impl.FlowableRuntimeUtils   : While
setting user status: unexpected task number (0)

So, what am I missing? Or is creating users from within anyObject workflow
not supposed to work at all? Help would be appreciated.

Best Regards

Stephan

--
Stephan Feder, Senior Software-Entwickler
Technische Universität Darmstadt
Hochschulrechenzentrum, Alexanderstraße 2, 64283 Darmstadt
Tel. +49 6151 16-71162
https://www.hrz.tu-darmstadt.de/



--

--
Lorenzo Di Cola

Software Engineer @ Tirasa S.r.l.
Viale Vittoria Colonna, 97 - 65127 Pescara
Tel +39 0859116307 / FAX +39 0859111173http://www.tirasa.net

Apache Syncope Committer

Syncope PMC Member at The Apache Software Foundation

http://people.apache.org/phonebook.html?uid=loredicola

Hello Stephan,
first of all I'm glad about your interest in Apache Syncope.

Analyzing your problem I do not think the issue could be creating users from
AnyObject workflow, maybe could be "how" the workflow is set in order to create
users.
Making some code changes could be easier to see the console with errors, it's
easy to create some misconfigurations. In order to solve you should try to
divide  if the problem is on Console side or Core side; in order to know that
you can see if you're able to make some operation via Swagger UI on
[syncope_base_url]/syncope/ (oh, I'm assuming you're using the latest version 3
of Syncope).

I'm thinking about some misconfiguration seeing the status unset too, if you
can see from the vanilla Syncope with vanilla workflow the status is always
set.

In order to see some more information about the issue I think you can increase
the log level for sure for flowable and see if you have some errors here.

It's too hard trying to solve without the real environment unfortunately, this
type of issue should be tried under my hands with your own code.

HTH
Best regards,
Lorenzo

Il giorno gio 11 lug 2024 alle ore 15:44 Feder, Stephan <[1]
stephan.fe...@tu-darmstadt.de> ha scritto:

   Hello,

   while evaluating syncope a problem has come up: I want to create users from
   within anyObject workflow but it does not work as expected. In detail:

   I have implemented

   1. a FlowableAnyObjectWorkflowAdapter which is based on the existing
   FlowableUserWorkflowAdapter,

   2. a task for creating anyObjects which based on the existing Create task,

   3. an anyType

   ---
   key: "myAny"
   kind: "ANY_OBJECT"
   classes: []

   4. the task

   public class CreateUser extends FlowableServiceTask {

        private final UserWorkflowAdapter userWorkflowAdapter;

        public CreateUser(final UserWorkflowAdapter userWorkflowAdapter) {
            this.userWorkflowAdapter = userWorkflowAdapter;
        }

        @Override
        protected void doExecute(final DelegateExecution execution) {
            userWorkflowAdapter.create(
                new UserCR.Builder("/", "test").build(),
                "creator",
                "context"
            );
        }
   }

   for creating users and

   5. a workflow for anyObjects (ids of edges are removed)

   <process id="anyObjectWorkflow" name="anyObjectWorkflow" isExecutable=
   "true">
      <startEvent id="startevent1" name="Start" flowable:formFieldValidation=
   "true"/>
      <sequenceFlow sourceRef="startevent1" targetRef="createAnyObject"/>
      <serviceTask id="createAnyObject" name="Create AnyObject"
   flowable:delegateExpression="${createAnyObject}"/>
      <sequenceFlow sourceRef="createAnyObject" targetRef="createUser"/>
      <serviceTask id="createUser" name="Create User"
   flowable:delegateExpression="${createUser}"/>
      <sequenceFlow sourceRef="createUser" targetRef="active"/>
      <userTask id="active" name="Active" flowable:formFieldValidation="true"
   />
      <sequenceFlow sourceRef="active" targetRef="endevent1"/>
      <endEvent id="endevent1" name="End"/>
   </process>

   which, on create, creates the anyObject and additionally a user and stops
   in a user task.

   In the console, adding an instance of anyType "myAny" completes
   successfully but afterwards the console becomes partially unusable:

   1. Opening the realms view gives Unexpected RuntimeException

   Last cause: Unexpected character ('<' (code 60)): expected a valid value
   (JSON String, Number, Array, Object or token 'null', 'true' or 'false')
     at [Source:
   
(org.apache.cxf.transport.http.asyncclient.AsyncHTTPConduit$AsyncWrappedOutputStream$7);
   line: 1, column: 2]
   WicketMessage: Error attaching this container for rendering:
   [WebMarkupContainer [Component id = body]]

   2. Trying to log in I always get "Wrong username and/or password".

   This seems to by caused by

DEBUG [IO-1 task-2] org.springframework.security.web.FilterChainProxy : Secured GET /actuator/info/
   DEBUG [IO-1 task-2]
   ot.actuate.endpoint.web.servlet.WebMvcEndpointHandlerMapping : Mapped to
   Actuator web endpoint 'info'
   WARN [IO-1 task-2]
   work.web.servlet.mvc.support.DefaultHandlerExceptionResolver : Resolved
   [org.springframework.http.converter.HttpMessageNotWritableException: Could
   not write JSON: Null key for a Map not allowed in JSON (use a converting
   NullKeySerializer?); nested exception is
   com.fasterxml.jackson.databind.JsonMappingException: Null key for a Map not
   allowed in JSON (use a converting NullKeySerializer?) (through reference
   chain: java.util.Collections$UnmodifiableMap["numbers"]->
   org.apache.syncope.common.lib.info.NumbersInfo["usersByStatus"])]

   which in turn is caused by the user's status being null:

   {
      "_class": "org.apache.syncope.common.lib.to.UserTO",
      "key": "0190a1f1-4a18-7066-8783-278d63e87abd",
      "type": "USER",
      "realm": "/",
      "username": "test",
      "creator": "creator",
      "creationDate": "2024-07-11T13:17:43.953038683Z",
      "creationContext": "context",
      "lastModifier": "creator",
      "lastChangeDate": "2024-07-11T13:17:43.953038683Z",
      "lastChangeContext": "context",
      "dynRealms": [],
      "status": null,
      "auxClasses": [],
      "plainAttrs": [],
      "derAttrs": [],
      "virAttrs": [],
      "resources": [],
      "password": null,
      "token": null,
      "tokenExpireTime": null,
      "lastLoginDate": null,
      "changePwdDate": null,
      "failedLogins": 0,
      "securityQuestion": null,
      "securityAnswer": null,
      "suspended": false,
      "mustChangePassword": false,
      "relationships": [],
      "memberships": [],
      "dynMemberships": [],
      "roles": [],
      "dynRoles": [],
      "privileges": [],
      "linkedAccounts": [],
      "delegatingDelegations": [],
      "delegatedDelegations": []
   }

   And in fact, the status is never set:

   WARN [IO-1 task-2]
   org.apache.syncope.core.flowable.impl.FlowableRuntimeUtils   : While
   setting user status: unexpected task number (0)

   So, what am I missing? Or is creating users from within anyObject workflow
   not supposed to work at all? Help would be appreciated.

   Best Regards

   Stephan

   --
   Stephan Feder, Senior Software-Entwickler
   Technische Universität Darmstadt
   Hochschulrechenzentrum, Alexanderstraße 2, 64283 Darmstadt
   Tel. +49 6151 16-71162
   [2]https://www.hrz.tu-darmstadt.de/




--

--
Lorenzo Di Cola

Software Engineer @ Tirasa S.r.l.
Viale Vittoria Colonna, 97 - 65127 Pescara
Tel +39 0859116307 / FAX +39 0859111173
[3]http://www.tirasa.net

Apache Syncope Committer

Syncope PMC Member at The Apache Software Foundation

[4]http://people.apache.org/phonebook.html?uid=loredicola


References:

[1] mailto:stephan.fe...@tu-darmstadt.de
[2] https://www.hrz.tu-darmstadt.de/
[3] http://www.tirasa.net/
[4] http://people.apache.org/phonebook.html?uid=loredicola


--
Stephan Feder, Senior Software-Entwickler
Technische Universität Darmstadt
Hochschulrechenzentrum, Alexanderstraße 2, 64283 Darmstadt
Tel. +49 6151 16-71162
https://www.hrz.tu-darmstadt.de/

DEBUG org.apache.syncope.core.logic.LogicInvocationHandler         : Before 
AnyObjectLogic.create([org.apache.syncope.common.lib.request.AnyObjectCR@44b23121,
 false])
DEBUG org.apache.syncope.core.logic.AbstractLogic                  : Input: 
org.apache.syncope.common.lib.request.AnyObjectCR@44b23121
Output: org.apache.syncope.common.lib.request.AnyObjectCR@44b23121

DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting StartProcessInstanceCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : ==>  
Preparing: select * from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or 
TENANT_ID_ is null) and DERIVED_FROM_ is null and VERSION_ = (select 
max(VERSION_) from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or 
TENANT_ID_ is null))
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : ==> 
Parameters: anyObjectWorkflow(String), anyObjectWorkflow(String)
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: INSTANCE
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG le.engine.impl.persistence.entity.ExecutionEntityManagerImpl : Child 
execution Execution[ id '2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a' ] - parent 
'2bb092d0-4053-11ef-b2c5-96c1c8a57c2a' created with parent 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.NoneStartEventActivityBehavior on 
activity 'startevent1' with execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.StartEvent with id 'startevent1' by 
following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'sid-02CCB2CC-BFB5-43F2-A7CF-D654F684D4C4' encountered. Continuing process 
by following it using execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.ServiceTaskDelegateExpressionActivityBehavior
 on activity 'createAnyObject' with execution 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.ServiceTask with id 'createAnyObject' 
by following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'sid-A3360BFA-886B-4523-BBBA-D5526412F464' encountered. Continuing process 
by following it using execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.ServiceTaskDelegateExpressionActivityBehavior
 on activity 'createUser' with execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting StartProcessInstanceCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.StartProcessInstanceCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : ==>  
Preparing: select * from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or 
TENANT_ID_ is null) and DERIVED_FROM_ is null and VERSION_ = (select 
max(VERSION_) from ACT_RE_PROCDEF where KEY_ = ? and (TENANT_ID_ = '' or 
TENANT_ID_ is null))
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : ==> 
Parameters: userWorkflow(String), userWorkflow(String)
DEBUG ocessDefinitionEntityImpl.selectLatestProcessDefinitionByKey : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: INSTANCE
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG le.engine.impl.persistence.entity.ExecutionEntityManagerImpl : Child 
execution Execution[ id '2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a' ] - parent 
'2bca8381-4053-11ef-b2c5-96c1c8a57c2a' created with parent 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.NoneStartEventActivityBehavior on 
activity 'theStart' with execution 2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.StartEvent with id 'theStart' by 
following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'flow1' encountered. Continuing process by following it using execution 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.ServiceTaskDelegateExpressionActivityBehavior
 on activity 'create' with execution 2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.ServiceTask with id 'create' by 
following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'flow2' encountered. Continuing process by following it using execution 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.ScriptTaskActivityBehavior on activity 
'activate' with execution 2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.ScriptTask with id 'activate' by 
following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'flow3' encountered. Continuing process by following it using execution 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.UserTaskActivityBehavior on activity 
'active' with execution 2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: TASK
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
StartProcessInstanceCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting GetExecutionVariableCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.GetExecutionVariableCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
GetExecutionVariableCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting GetExecutionVariableCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.GetExecutionVariableCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
GetExecutionVariableCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting TaskQueryImpl --------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.task.service.impl.TaskQueryImpl'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_RU_TASK RES WHERE RES.PROC_INST_ID_ = ? order 
by RES.ID_ asc
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==> 
Parameters: 2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : <==      
Total: 0
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
TaskQueryImpl finished --------------------------------------------------------
 WARN org.apache.syncope.core.flowable.impl.FlowableRuntimeUtils   : While 
setting user status: unexpected task number (0)
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting SetProcessInstanceBusinessKeyCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.SetProcessInstanceBusinessKeyCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
SetProcessInstanceBusinessKeyCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting GetExecutionVariableCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.GetExecutionVariableCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
GetExecutionVariableCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.cmd.RemoveExecutionVariablesCmd'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting TaskQueryImpl --------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.task.service.impl.TaskQueryImpl'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_RU_TASK RES WHERE RES.PROC_INST_ID_ = ? and 
RES.FORM_KEY_ IS NOT NULL order by RES.ID_ asc
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==> 
Parameters: 2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : <==      
Total: 0
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
TaskQueryImpl finished --------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting HistoricActivityInstanceQueryImpl 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG ble.common.engine.impl.interceptor.CommandContextInterceptor : Valid 
context found. Reusing it for the current command 
'org.flowable.engine.impl.HistoricActivityInstanceQueryImpl'
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_HI_ACTINST RES WHERE RES.EXECUTION_ID_ = ? 
order by RES.ID_ asc
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : ==> 
Parameters: 2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : <==      
Total: 0
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
HistoricActivityInstanceQueryImpl finished 
--------------------------------------------------------
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG owable.engine.impl.agenda.TakeOutgoingSequenceFlowsOperation : Leaving 
flow node class org.flowable.bpmn.model.ServiceTask with id 'createUser' by 
following it's 1 outgoing sequenceflow
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Sequence 
flow 'sid-229D0C71-7BC6-4A73-AD49-99B5478F259C' encountered. Continuing process 
by following it using execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.engine.impl.agenda.DefaultFlowableEngineAgenda  : Operation 
class org.flowable.engine.impl.agenda.ContinueProcessOperation added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.agenda.ContinueProcessOperation
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG org.flowable.engine.impl.agenda.ContinueProcessOperation     : Executing 
activityBehavior class 
org.flowable.engine.impl.bpmn.behavior.UserTaskActivityBehavior on activity 
'active' with execution 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: TASK
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.agenda.ExecuteInactiveBehaviorsOperation added 
to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.ExecuteInactiveBehaviorsOperation
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class 
org.flowable.engine.impl.agenda.EvaluateVariableListenerEventDefinitionsOperation
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ProcessInstance[2bb092d0-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
Execution[ id '2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a' ] - activity 'active' - 
parent '2bb092d0-4053-11ef-b2c5-96c1c8a57c2a'
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ProcessInstance[2bca8381-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
Execution[ id '2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a' ] - activity 'active' - 
parent '2bca8381-4053-11ef-b2c5-96c1c8a57c2a'
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricProcessInstanceEntity[superProcessInstanceId=null]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricProcessInstanceEntity[superProcessInstanceId=null]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
VariableInstanceEntity[id=2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyOnjectWfExecutor, type=string, textValue=admin]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
VariableInstanceEntity[id=2bb26793-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectCR, type=serializable, 
byteArrayValueId=2bb24082-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
VariableInstanceEntity[id=2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a, name=anyObject, 
type=serializable, byteArrayValueId=2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
VariableInstanceEntity[id=2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectTO, type=serializable, 
byteArrayValueId=2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricVariableInstanceEntity[id=2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyOnjectWfExecutor, revision=0, type=string, textValue=admin]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricVariableInstanceEntity[id=2bb26793-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectCR, revision=0, type=serializable, 
byteArrayValueId=2bb26794-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricVariableInstanceEntity[id=2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObject, revision=0, type=serializable, 
byteArrayValueId=2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricVariableInstanceEntity[id=2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectTO, revision=0, type=serializable, 
byteArrayValueId=2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
Task[id=2c2ec3a6-4053-11ef-b2c5-96c1c8a57c2a, key=active, name=Active]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
Task[id=2c4dbd59-4053-11ef-b2c5-96c1c8a57c2a, key=active, name=Active]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bb28ea6-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=startevent1, activityName=Start, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bb48a77-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-02CCB2CC-BFB5-43F2-A7CF-D654F684D4C4, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bb48a78-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=createAnyObject, activityName=Create AnyObject, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bc9c02f-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-A3360BFA-886B-4523-BBBA-D5526412F464, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bc9c030-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=createUser, activityName=Create User, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bcad1a8-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=theStart, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bcad1a9-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow1, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bcad1aa-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=create, activityName=Create, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bdfe051-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow2, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2bdfe052-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=activate, activityName=Activate, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2c2e2764-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow3, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2c2e2765-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=active, activityName=Active, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2c4dbd57-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-229D0C71-7BC6-4A73-AD49-99B5478F259C, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
HistoricActivityInstanceEntity[id=2c4dbd58-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=active, activityName=Active, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bb24082-4053-11ef-b2c5-96c1c8a57c2a, name=var-anyObjectCR, 
size=541]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bb26794-4053-11ef-b2c5-96c1c8a57c2a, 
name=hist.var-anyObjectCR, size=541]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a, name=var-anyObject, 
size=2289]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a, 
name=hist.var-anyObject, size=2289]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a, name=var-anyObjectTO, 
size=826]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ByteArrayEntity[id=2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a, 
name=hist.var-anyObjectTO, size=826]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bb28ea6-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=startevent1, activityName=Start, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bb48a77-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-02CCB2CC-BFB5-43F2-A7CF-D654F684D4C4, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bb48a78-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=createAnyObject, activityName=Create AnyObject, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bc9c02f-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-A3360BFA-886B-4523-BBBA-D5526412F464, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bc9c030-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=createUser, activityName=Create User, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bcad1a8-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=theStart, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bcad1a9-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow1, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bcad1aa-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=create, activityName=Create, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bdfe051-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow2, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2bdfe052-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=activate, activityName=Activate, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2c2e2764-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=flow3, activityName=null, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2c2e2765-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=active, activityName=Active, executionId= 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2c4dbd57-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=sid-229D0C71-7BC6-4A73-AD49-99B5478F259C, activityName=null, 
executionId= 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : insert 
ActivityInstanceEntity[id=2c4dbd58-4053-11ef-b2c5-96c1c8a57c2a, 
activityId=active, activityName=Active, executionId= 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 50 insert, 0 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG ariableInstanceEntityImpl.bulkInsertHistoricVariableInstance : ==>  
Preparing: insert into ACT_HI_VARINST (ID_, PROC_INST_ID_, EXECUTION_ID_, 
TASK_ID_, NAME_, REV_, VAR_TYPE_, SCOPE_ID_, SUB_SCOPE_ID_, SCOPE_TYPE_, 
BYTEARRAY_ID_, DOUBLE_, LONG_ , TEXT_, TEXT2_, META_INFO_, CREATE_TIME_, 
LAST_UPDATED_TIME_) values ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
? ) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , ( ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , ( ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ? )
DEBUG ariableInstanceEntityImpl.bulkInsertHistoricVariableInstance : ==> 
Parameters: 2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
anyOnjectWfExecutor(String), 0(Integer), string(String), null, null, null, 
null, null, null, admin(String), null, null, 2024-07-12 
13:32:23.127(Timestamp), 2024-07-12 13:32:23.127(Timestamp), 
2bb26793-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, anyObjectCR(String), 
0(Integer), serializable(String), null, null, null, 
2bb26794-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
2024-07-12 13:32:23.135(Timestamp), 2024-07-12 13:32:23.135(Timestamp), 
2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, anyObject(String), 
0(Integer), serializable(String), null, null, null, 
2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
2024-07-12 13:32:23.183(Timestamp), 2024-07-12 13:32:23.183(Timestamp), 
2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, anyObjectTO(String), 
0(Integer), serializable(String), null, null, null, 
2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
2024-07-12 13:32:23.288(Timestamp), 2024-07-12 13:32:23.288(Timestamp)
DEBUG ariableInstanceEntityImpl.bulkInsertHistoricVariableInstance : <==    
Updates: 4
DEBUG cProcessInstanceEntityImpl.bulkInsertHistoricProcessInstance : ==>  
Preparing: insert into ACT_HI_PROCINST ( ID_, REV_, PROC_INST_ID_, 
BUSINESS_KEY_, PROC_DEF_ID_, START_TIME_, END_TIME_, DURATION_, START_USER_ID_, 
START_ACT_ID_, END_ACT_ID_, SUPER_PROCESS_INSTANCE_ID_, DELETE_REASON_, 
TENANT_ID_, NAME_, CALLBACK_ID_, CALLBACK_TYPE_, REFERENCE_ID_, 
REFERENCE_TYPE_, PROPAGATED_STAGE_INST_ID_, BUSINESS_STATUS_ ) values ( ?, 1, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , ( ?, 1, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
DEBUG cProcessInstanceEntityImpl.bulkInsertHistoricProcessInstance : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 2024-07-12 
13:32:23.123(Timestamp), null, null, null, startevent1(String), null, null, 
null, (String), null, null, null, null, null, null, null, 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:0190a725-137f-7592-9907-b25b0f5d2ae5(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 2024-07-12 
13:32:23.293(Timestamp), null, null, null, theStart(String), null, null, null, 
(String), null, null, null, null, null, null, null
DEBUG cProcessInstanceEntityImpl.bulkInsertHistoricProcessInstance : <==    
Updates: 2
DEBUG ctivityInstanceEntityImpl.bulkInsertHistoricActivityInstance : ==>  
Preparing: insert into ACT_HI_ACTINST ( ID_, REV_, PROC_DEF_ID_, PROC_INST_ID_, 
EXECUTION_ID_, ACT_ID_, TASK_ID_, CALL_PROC_INST_ID_, ACT_NAME_, ACT_TYPE_, 
ASSIGNEE_, START_TIME_, END_TIME_, TRANSACTION_ORDER_, DURATION_, 
DELETE_REASON_, TENANT_ID_ ) values (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , 
(?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?)
DEBUG ctivityInstanceEntityImpl.bulkInsertHistoricActivityInstance : ==> 
Parameters: 2bb28ea6-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), startevent1(String), null, null, 
Start(String), startEvent(String), null, 2024-07-12 13:32:23.136(Timestamp), 
2024-07-12 13:32:23.145(Timestamp), 1(Integer), 9(Long), null, (String), 
2bb48a77-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-02CCB2CC-BFB5-43F2-A7CF-D654F684D4C4(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.149(Timestamp), 2024-07-12 
13:32:23.149(Timestamp), 2(Integer), 0(Long), null, (String), 
2bb48a78-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), createAnyObject(String), null, 
null, Create AnyObject(String), serviceTask(String), null, 2024-07-12 
13:32:23.149(Timestamp), 2024-07-12 13:32:23.288(Timestamp), 3(Integer), 
139(Long), null, (String), 2bc9c02f-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-A3360BFA-886B-4523-BBBA-D5526412F464(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.288(Timestamp), 2024-07-12 
13:32:23.288(Timestamp), 4(Integer), 0(Long), null, (String), 
2bc9c030-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), createUser(String), null, null, 
Create User(String), serviceTask(String), null, 2024-07-12 
13:32:23.288(Timestamp), 2024-07-12 13:32:24.152(Timestamp), 5(Integer), 
864(Long), null, (String), 2bcad1a8-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), theStart(String), null, null, 
null, startEvent(String), null, 2024-07-12 13:32:23.295(Timestamp), 2024-07-12 
13:32:23.295(Timestamp), 1(Integer), 0(Long), null, (String), 
2bcad1a9-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow1(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.295(Timestamp), 2024-07-12 
13:32:23.295(Timestamp), 2(Integer), 0(Long), null, (String), 
2bcad1aa-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), create(String), null, null, 
Create(String), serviceTask(String), null, 2024-07-12 13:32:23.295(Timestamp), 
2024-07-12 13:32:23.433(Timestamp), 3(Integer), 138(Long), null, (String), 
2bdfe051-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow2(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.433(Timestamp), 2024-07-12 
13:32:23.433(Timestamp), 4(Integer), 0(Long), null, (String), 
2bdfe052-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), activate(String), null, null, 
Activate(String), scriptTask(String), null, 2024-07-12 13:32:23.433(Timestamp), 
2024-07-12 13:32:23.946(Timestamp), 5(Integer), 513(Long), null, (String), 
2c2e2764-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow3(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.946(Timestamp), 2024-07-12 
13:32:23.946(Timestamp), 6(Integer), 0(Long), null, (String), 
2c2e2765-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), active(String), 
2c2ec3a6-4053-11ef-b2c5-96c1c8a57c2a(String), null, Active(String), 
userTask(String), null, 2024-07-12 13:32:23.946(Timestamp), null, 7(Integer), 
null, null, (String), 2c4dbd57-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-229D0C71-7BC6-4A73-AD49-99B5478F259C(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:24.153(Timestamp), 2024-07-12 
13:32:24.153(Timestamp), 6(Integer), 0(Long), null, (String), 
2c4dbd58-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), active(String), 
2c4dbd59-4053-11ef-b2c5-96c1c8a57c2a(String), null, Active(String), 
userTask(String), null, 2024-07-12 13:32:24.153(Timestamp), null, 7(Integer), 
null, null, (String)
DEBUG ctivityInstanceEntityImpl.bulkInsertHistoricActivityInstance : <==    
Updates: 14
DEBUG l.persistence.entity.ExecutionEntityImpl.bulkInsertExecution : ==>  
Preparing: insert into ACT_RU_EXECUTION (ID_, REV_, PROC_INST_ID_, 
BUSINESS_KEY_, PROC_DEF_ID_, ACT_ID_, IS_ACTIVE_, IS_CONCURRENT_, 
IS_SCOPE_,IS_EVENT_SCOPE_, IS_MI_ROOT_, PARENT_ID_, SUPER_EXEC_, 
ROOT_PROC_INST_ID_, SUSPENSION_STATE_, TENANT_ID_, NAME_, START_ACT_ID_, 
START_TIME_, START_USER_ID_, IS_COUNT_ENABLED_, EVT_SUBSCR_COUNT_, TASK_COUNT_, 
JOB_COUNT_, TIMER_JOB_COUNT_, SUSP_JOB_COUNT_, DEADLETTER_JOB_COUNT_, 
EXTERNAL_WORKER_JOB_COUNT_, VAR_COUNT_, ID_LINK_COUNT_, CALLBACK_ID_, 
CALLBACK_TYPE_, REFERENCE_ID_, REFERENCE_TYPE_, PROPAGATED_STAGE_INST_ID_, 
BUSINESS_STATUS_) values (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , (?, 1, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ? ) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
DEBUG l.persistence.entity.ExecutionEntityImpl.bulkInsertExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
true(Boolean), false(Boolean), true(Boolean), false(Boolean), false(Boolean), 
null, null, 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer), (String), 
null, startevent1(String), 2024-07-12 13:32:23.123(Timestamp), null, 
true(Boolean), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 
0(Integer), 0(Integer), 0(Integer), 0(Integer), null, null, null, null, null, 
null, 2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
active(String), true(Boolean), false(Boolean), false(Boolean), false(Boolean), 
false(Boolean), 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer), (String), null, null, 
2024-07-12 13:32:23.136(Timestamp), null, true(Boolean), 0(Integer), 
1(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 
0(Integer), 0(Integer), null, null, null, null, null, null, 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:0190a725-137f-7592-9907-b25b0f5d2ae5(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), null, 
true(Boolean), false(Boolean), true(Boolean), false(Boolean), false(Boolean), 
null, null, 2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer), (String), 
null, theStart(String), 2024-07-12 13:32:23.293(Timestamp), null, 
true(Boolean), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 
0(Integer), 0(Integer), 0(Integer), 0(Integer), null, null, null, null, null, 
null, 2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), active(String), 
true(Boolean), false(Boolean), false(Boolean), false(Boolean), false(Boolean), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), null, 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer), (String), null, null, 
2024-07-12 13:32:23.295(Timestamp), null, true(Boolean), 0(Integer), 
1(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 0(Integer), 
0(Integer), 0(Integer), null, null, null, null, null, null
DEBUG l.persistence.entity.ExecutionEntityImpl.bulkInsertExecution : <==    
Updates: 4
DEBUG entity.ActivityInstanceEntityImpl.bulkInsertActivityInstance : ==>  
Preparing: insert into ACT_RU_ACTINST ( ID_, REV_, PROC_DEF_ID_, PROC_INST_ID_, 
EXECUTION_ID_, ACT_ID_, TASK_ID_, CALL_PROC_INST_ID_, ACT_NAME_, ACT_TYPE_, 
ASSIGNEE_, START_TIME_, END_TIME_, TRANSACTION_ORDER_, DURATION_, 
DELETE_REASON_, TENANT_ID_ ) values (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , 
(?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?)
DEBUG entity.ActivityInstanceEntityImpl.bulkInsertActivityInstance : ==> 
Parameters: 2bb28ea6-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), startevent1(String), null, null, 
Start(String), startEvent(String), null, 2024-07-12 13:32:23.136(Timestamp), 
2024-07-12 13:32:23.145(Timestamp), 1(Integer), 9(Long), null, (String), 
2bb48a77-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-02CCB2CC-BFB5-43F2-A7CF-D654F684D4C4(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.149(Timestamp), 2024-07-12 
13:32:23.149(Timestamp), 2(Integer), 0(Long), null, (String), 
2bb48a78-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), createAnyObject(String), null, 
null, Create AnyObject(String), serviceTask(String), null, 2024-07-12 
13:32:23.149(Timestamp), 2024-07-12 13:32:23.288(Timestamp), 3(Integer), 
139(Long), null, (String), 2bc9c02f-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-A3360BFA-886B-4523-BBBA-D5526412F464(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.288(Timestamp), 2024-07-12 
13:32:23.288(Timestamp), 4(Integer), 0(Long), null, (String), 
2bc9c030-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), createUser(String), null, null, 
Create User(String), serviceTask(String), null, 2024-07-12 
13:32:23.288(Timestamp), 2024-07-12 13:32:24.152(Timestamp), 5(Integer), 
864(Long), null, (String), 2bcad1a8-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), theStart(String), null, null, 
null, startEvent(String), null, 2024-07-12 13:32:23.295(Timestamp), 2024-07-12 
13:32:23.295(Timestamp), 1(Integer), 0(Long), null, (String), 
2bcad1a9-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow1(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.295(Timestamp), 2024-07-12 
13:32:23.295(Timestamp), 2(Integer), 0(Long), null, (String), 
2bcad1aa-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), create(String), null, null, 
Create(String), serviceTask(String), null, 2024-07-12 13:32:23.295(Timestamp), 
2024-07-12 13:32:23.433(Timestamp), 3(Integer), 138(Long), null, (String), 
2bdfe051-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow2(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.433(Timestamp), 2024-07-12 
13:32:23.433(Timestamp), 4(Integer), 0(Long), null, (String), 
2bdfe052-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), activate(String), null, null, 
Activate(String), scriptTask(String), null, 2024-07-12 13:32:23.433(Timestamp), 
2024-07-12 13:32:23.946(Timestamp), 5(Integer), 513(Long), null, (String), 
2c2e2764-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), flow3(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:23.946(Timestamp), 2024-07-12 
13:32:23.946(Timestamp), 6(Integer), 0(Long), null, (String), 
2c2e2765-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), active(String), 
2c2ec3a6-4053-11ef-b2c5-96c1c8a57c2a(String), null, Active(String), 
userTask(String), null, 2024-07-12 13:32:23.946(Timestamp), null, 7(Integer), 
null, null, (String), 2c4dbd57-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
sid-229D0C71-7BC6-4A73-AD49-99B5478F259C(String), null, null, null, 
sequenceFlow(String), null, 2024-07-12 13:32:24.153(Timestamp), 2024-07-12 
13:32:24.153(Timestamp), 6(Integer), 0(Long), null, (String), 
2c4dbd58-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), active(String), 
2c4dbd59-4053-11ef-b2c5-96c1c8a57c2a(String), null, Active(String), 
userTask(String), null, 2024-07-12 13:32:24.153(Timestamp), null, 7(Integer), 
null, null, (String)
DEBUG entity.ActivityInstanceEntityImpl.bulkInsertActivityInstance : <==    
Updates: 14
DEBUG ervice.impl.persistence.entity.TaskEntityImpl.bulkInsertTask : ==>  
Preparing: INSERT INTO ACT_RU_TASK (ID_, REV_, NAME_, PARENT_TASK_ID_, 
DESCRIPTION_, PRIORITY_, CREATE_TIME_, OWNER_, ASSIGNEE_, DELEGATION_, 
EXECUTION_ID_, PROC_INST_ID_, PROC_DEF_ID_, TASK_DEF_ID_, SCOPE_ID_, 
SUB_SCOPE_ID_, SCOPE_TYPE_, SCOPE_DEFINITION_ID_, PROPAGATED_STAGE_INST_ID_, 
TASK_DEF_KEY_, DUE_DATE_, CATEGORY_, SUSPENSION_STATE_, TENANT_ID_, FORM_KEY_, 
CLAIM_TIME_, IS_COUNT_ENABLED_, VAR_COUNT_, ID_LINK_COUNT_, SUB_TASK_COUNT_) 
VALUES (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ? ) , (?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? )
DEBUG ervice.impl.persistence.entity.TaskEntityImpl.bulkInsertTask : ==> 
Parameters: 2c2ec3a6-4053-11ef-b2c5-96c1c8a57c2a(String), Active(String), null, 
null, 50(Integer), 2024-07-12 13:32:23.946(Timestamp), null, null, null, 
2bcad1a7-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bca8381-4053-11ef-b2c5-96c1c8a57c2a(String), 
userWorkflow:1:000c6c07-4050-11ef-b2c5-96c1c8a57c2a(String), null, null, null, 
null, null, null, active(String), null, null, 1(Integer), (String), null, null, 
true(Boolean), 0(Integer), 0(Integer), 0(Integer), 
2c4dbd59-4053-11ef-b2c5-96c1c8a57c2a(String), Active(String), null, null, 
50(Integer), 2024-07-12 13:32:24.153(Timestamp), null, null, null, 
2bb28ea5-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
anyObjectWorkflow:1:08f0da1d-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, 
null, null, null, null, active(String), null, null, 1(Integer), (String), null, 
null, true(Boolean), 0(Integer), 0(Integer), 0(Integer)
DEBUG ervice.impl.persistence.entity.TaskEntityImpl.bulkInsertTask : <==    
Updates: 2
DEBUG l.persistence.entity.ByteArrayEntityImpl.bulkInsertByteArray : ==>  
Preparing: insert into ACT_GE_BYTEARRAY(ID_, REV_, NAME_, BYTES_, 
DEPLOYMENT_ID_) values (?, 1, ?, ?, ?) , (?, 1, ?, ?, ?) , (?, 1, ?, ?, ?) , 
(?, 1, ?, ?, ?) , (?, 1, ?, ?, ?) , (?, 1, ?, ?, ?)
DEBUG l.persistence.entity.ByteArrayEntityImpl.bulkInsertByteArray : ==> 
Parameters: 2bb24082-4053-11ef-b2c5-96c1c8a57c2a(String), 
var-anyObjectCR(String), 
java.io.ByteArrayInputStream@34cb03b(ByteArrayInputStream), null, 
2bb26794-4053-11ef-b2c5-96c1c8a57c2a(String), hist.var-anyObjectCR(String), 
java.io.ByteArrayInputStream@1b2f1f26(ByteArrayInputStream), null, 
2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a(String), var-anyObject(String), 
java.io.ByteArrayInputStream@486d557f(ByteArrayInputStream), null, 
2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a(String), hist.var-anyObject(String), 
java.io.ByteArrayInputStream@535dd84(ByteArrayInputStream), null, 
2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a(String), var-anyObjectTO(String), 
java.io.ByteArrayInputStream@631e7871(ByteArrayInputStream), null, 
2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a(String), hist.var-anyObjectTO(String), 
java.io.ByteArrayInputStream@2b9d1b(ByteArrayInputStream), null
DEBUG l.persistence.entity.ByteArrayEntityImpl.bulkInsertByteArray : <==    
Updates: 6
DEBUG entity.VariableInstanceEntityImpl.bulkInsertVariableInstance : ==>  
Preparing: INSERT INTO ACT_RU_VARIABLE (ID_, REV_, TYPE_, NAME_, PROC_INST_ID_, 
EXECUTION_ID_, TASK_ID_, SCOPE_ID_, SUB_SCOPE_ID_, SCOPE_TYPE_, BYTEARRAY_ID_, 
DOUBLE_, LONG_ , TEXT_, TEXT2_, META_INFO_) VALUES ( ?, 1, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ? ) , ( ?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , ( 
?, 1, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ? ) , ( ?, 1, ?, ?, ?, ?, ?, ?, ?, 
?, ?, ?, ?, ?, ?, ? )
DEBUG entity.VariableInstanceEntityImpl.bulkInsertVariableInstance : ==> 
Parameters: 2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a(String), string(String), 
anyOnjectWfExecutor(String), 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
null, null, admin(String), null, null, 
2bb26793-4053-11ef-b2c5-96c1c8a57c2a(String), serializable(String), 
anyObjectCR(String), 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, 
2bb24082-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a(String), serializable(String), 
anyObject(String), 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, 
2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null, 
2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a(String), serializable(String), 
anyObjectTO(String), 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, 
2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a(String), null, null, null, null, null
DEBUG entity.VariableInstanceEntityImpl.bulkInsertVariableInstance : <==    
Updates: 4
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
StartProcessInstanceCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==>  
Preparing: select * from ACT_RU_VARIABLE WHERE EXECUTION_ID_ = ? AND TASK_ID_ 
is null
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : <==      
Total: 4
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==>  
Preparing: select * from ACT_HI_VARINST where ID_ = ?
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==> 
Parameters: 2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
VariableInstanceEntity[id=2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyOnjectWfExecutor, type=string] with id 
2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
HistoricVariableInstanceEntity[id=2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyOnjectWfExecutor, revision=0, type=string, textValue=admin] with id 
2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 2 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==>  
Preparing: delete from ACT_RU_VARIABLE where ID_ = ? and REV_ = ?
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==> 
Parameters: 2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : <==    
Updates: 1
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==>  
Preparing: delete from ACT_HI_VARINST where ID_ = ? and REV_ = ?
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==> 
Parameters: 2bb0b9e1-4053-11ef-b2c5-96c1c8a57c2a(String), 0(Integer)
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==>  
Preparing: select * from ACT_RU_VARIABLE WHERE EXECUTION_ID_ = ? AND TASK_ID_ 
is null
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : <==      
Total: 3
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==>  
Preparing: select * from ACT_HI_VARINST where ID_ = ?
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==> 
Parameters: 2bb26793-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
VariableInstanceEntity[id=2bb26793-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectCR, type=serializable] with id 
2bb26793-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
HistoricVariableInstanceEntity[id=2bb26793-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectCR, revision=0, type=serializable] with id 
2bb26793-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bb24082-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bb26794-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 4 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==>  
Preparing: delete from ACT_RU_VARIABLE where ID_ = ? and REV_ = ?
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==> 
Parameters: 2bb26793-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bb24082-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bb26794-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==>  
Preparing: delete from ACT_HI_VARINST where ID_ = ? and REV_ = ?
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==> 
Parameters: 2bb26793-4053-11ef-b2c5-96c1c8a57c2a(String), 0(Integer)
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==>  
Preparing: select * from ACT_RU_VARIABLE WHERE EXECUTION_ID_ = ? AND TASK_ID_ 
is null
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : <==      
Total: 2
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==>  
Preparing: select * from ACT_HI_VARINST where ID_ = ?
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==> 
Parameters: 2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
VariableInstanceEntity[id=2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectTO, type=serializable] with id 
2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
HistoricVariableInstanceEntity[id=2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObjectTO, revision=0, type=serializable] with id 
2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 4 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==>  
Preparing: delete from ACT_RU_VARIABLE where ID_ = ? and REV_ = ?
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==> 
Parameters: 2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bc9c02c-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bc9c02e-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==>  
Preparing: delete from ACT_HI_VARINST where ID_ = ? and REV_ = ?
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==> 
Parameters: 2bc9c02d-4053-11ef-b2c5-96c1c8a57c2a(String), 0(Integer)
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting GetExecutionVariableCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==>  
Preparing: select * from ACT_RU_VARIABLE WHERE EXECUTION_ID_ = ? AND TASK_ID_ 
is null AND NAME_ = ?
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), anyObject(String)
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : <==      
Total: 1
DEBUG .impl.persistence.entity.ByteArrayEntityImpl.selectByteArray : ==>  
Preparing: select * from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG .impl.persistence.entity.ByteArrayEntityImpl.selectByteArray : ==> 
Parameters: 2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ByteArrayEntityImpl.selectByteArray : <==      
Total: 1
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
GetExecutionVariableCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting RemoveExecutionVariablesCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==>  
Preparing: select * from ACT_RU_VARIABLE WHERE EXECUTION_ID_ = ? AND TASK_ID_ 
is null
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nce.entity.VariableInstanceEntityImpl.selectVariablesByQuery : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==>  
Preparing: select * from ACT_HI_VARINST where ID_ = ?
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : ==> 
Parameters: 2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ricVariableInstanceEntityImpl.selectHistoricVariableInstance : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: ACTIVITY
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY, level required: FULL
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
VariableInstanceEntity[id=2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a, name=anyObject, 
type=serializable] with id 2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : delete 
HistoricVariableInstanceEntity[id=2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a, 
name=anyObject, revision=0, type=serializable] with id 
2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : bulk 
delete: deleteByteArrayNoRevisionCheck(2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a)
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 4 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==>  
Preparing: delete from ACT_RU_VARIABLE where ID_ = ? and REV_ = ?
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : ==> 
Parameters: 2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG nce.entity.VariableInstanceEntityImpl.deleteVariableInstance : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bb9ba99-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==>  
Preparing: delete from ACT_GE_BYTEARRAY where ID_ = ?
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : ==> 
Parameters: 2bb9ba9b-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG ce.entity.ByteArrayEntityImpl.deleteByteArrayNoRevisionCheck : <==    
Updates: 1
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==>  
Preparing: delete from ACT_HI_VARINST where ID_ = ? and REV_ = ?
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : ==> 
Parameters: 2bb9ba9a-4053-11ef-b2c5-96c1c8a57c2a(String), 0(Integer)
DEBUG ricVariableInstanceEntityImpl.deleteHistoricVariableInstance : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
RemoveExecutionVariablesCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting TaskQueryImpl --------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_RU_TASK RES WHERE RES.PROC_INST_ID_ = ? order 
by RES.ID_ asc
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : <==      
Total: 1
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
TaskQueryImpl finished --------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting SetProcessInstanceBusinessKeyCmd 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==>  
Preparing: select * from ACT_RU_EXECUTION where ID_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.selectExecution : <==      
Total: 1
DEBUG able.engine.impl.history.DefaultHistoryConfigurationSettings : Current 
history level: ACTIVITY
DEBUG toricProcessInstanceEntityImpl.selectHistoricProcessInstance : ==>  
Preparing: select RES.*, DEF.KEY_ as PROC_DEF_KEY_, DEF.NAME_ as 
PROC_DEF_NAME_, DEF.VERSION_ as PROC_DEF_VERSION_, DEF.DEPLOYMENT_ID_ as 
DEPLOYMENT_ID_ from ACT_HI_PROCINST RES left outer join ACT_RE_PROCDEF DEF on 
RES.PROC_DEF_ID_ = DEF.ID_ where PROC_INST_ID_ = ?
DEBUG toricProcessInstanceEntityImpl.selectHistoricProcessInstance : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG toricProcessInstanceEntityImpl.selectHistoricProcessInstance : <==      
Total: 1
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : update 
ProcessInstance[2bb092d0-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : update 
HistoricProcessInstanceEntity[superProcessInstanceId=null]
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 2 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : updating: 
ProcessInstance[2bb092d0-4053-11ef-b2c5-96c1c8a57c2a]
DEBUG .impl.persistence.entity.ExecutionEntityImpl.updateExecution : ==>  
Preparing: update ACT_RU_EXECUTION SET REV_ = ?, BUSINESS_KEY_ = ? where ID_ = 
? and REV_ = ?
DEBUG .impl.persistence.entity.ExecutionEntityImpl.updateExecution : ==> 
Parameters: 2(Integer), 
anyObjectWorkflow:0190a725-12f5-7445-bd80-aa377b30acac(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG .impl.persistence.entity.ExecutionEntityImpl.updateExecution : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : updating: 
HistoricProcessInstanceEntity[superProcessInstanceId=null]
DEBUG toricProcessInstanceEntityImpl.updateHistoricProcessInstance : ==>  
Preparing: update ACT_HI_PROCINST SET REV_ = ?, BUSINESS_KEY_ = ? where ID_ = ? 
and REV_ = ?
DEBUG toricProcessInstanceEntityImpl.updateHistoricProcessInstance : ==> 
Parameters: 2(Integer), 
anyObjectWorkflow:0190a725-12f5-7445-bd80-aa377b30acac(String), 
2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String), 1(Integer)
DEBUG toricProcessInstanceEntityImpl.updateHistoricProcessInstance : <==    
Updates: 1
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
SetProcessInstanceBusinessKeyCmd finished 
--------------------------------------------------------
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting TaskQueryImpl --------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_RU_TASK RES WHERE RES.PROC_INST_ID_ = ? and 
RES.FORM_KEY_ IS NOT NULL order by RES.ID_ asc
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG .persistence.entity.TaskEntityImpl.selectTaskByQueryCriteria : <==      
Total: 0
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
TaskQueryImpl finished --------------------------------------------------------
DEBUG tudarmstadt.hrz.idm.oss.custom.flowable.FlowableRuntimeUtils : While 
checking if form task: unexpected task number (0)
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
starting HistoricActivityInstanceQueryImpl 
--------------------------------------------------------
DEBUG org.flowable.common.spring.SpringTransactionInterceptor      : Running 
command with propagation REQUIRED
DEBUG org.flowable.common.engine.impl.agenda.AbstractAgenda        : Operation 
class org.flowable.engine.impl.interceptor.CommandInvoker$1 added to agenda
DEBUG org.flowable.engine.impl.interceptor.CommandInvoker          : Executing 
operation class org.flowable.engine.impl.interceptor.CommandInvoker$1
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : ==>  
Preparing: SELECT RES.* from ACT_HI_ACTINST RES WHERE RES.EXECUTION_ID_ = ? 
order by RES.ID_ asc
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : ==> 
Parameters: 2bb092d0-4053-11ef-b2c5-96c1c8a57c2a(String)
DEBUG nceEntityImpl.selectHistoricActivityInstancesByQueryCriteria : <==      
Total: 0
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : Flushing 
dbSqlSession
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : flush 
summary: 0 insert, 0 update, 0 delete.
DEBUG org.flowable.common.engine.impl.db.DbSqlSession              : now 
executing flush...
DEBUG org.flowable.common.engine.impl.interceptor.LogInterceptor   : --- 
HistoricActivityInstanceQueryImpl finished 
--------------------------------------------------------
DEBUG org.apache.syncope.core.logic.LogicInvocationHandler         : After 
returning AnyObjectLogic.create: 
org.apache.syncope.common.lib.to.ProvisioningResult@264a76d3

Reply via email to