Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  • In the workflow.properties file enabled with Flowable support (it could be core/src/main/resources/workflow.propertiescore/src/main/resources/all/workflow.properties or other, depending on your project setup), replace

    Code Block
    languagejava
    uwfAdapter=org.apache.syncope.core.workflow.flowable.FlowableUserWorkflowAdapter

    with

    Code Block
    languagejava
    uwfAdapter=org.apache.syncope.core.flowable.impl.FlowableUserWorkflowAdapter


  • In both console/src/main/resources/console.properties and console/src/test/resources/console.properties, remove

    Code Block
    flowableModelerDirectory=${flowable-modeler.directory}

    and

    Code Block
    page.workflow=org.apache.syncope.client.console.pages.Workflow

    then add

    Code Block
    topology.corePoolSize=10
    topology.maxPoolSize=20
    topology.queueCapacity=50


Replace the following files with their 2.1.2 counterparts (re-apply any customization previously made):

Classes

  • move all workflow tasks from package org.apache.syncope.core.workflow.flowable.task to package org.apache.syncope.core.flowable.task
  • change parent class from AbstractFlowableServiceTask to FlowableServiceTask 

...