Example usage for com.liferay.portal.workflow.kaleo.runtime ExecutionContext getWorkflowContext

List of usage examples for com.liferay.portal.workflow.kaleo.runtime ExecutionContext getWorkflowContext

Introduction

In this page you can find the example usage for com.liferay.portal.workflow.kaleo.runtime ExecutionContext getWorkflowContext.

Prototype

public Map<String, Serializable> getWorkflowContext() 

Source Link

Usage

From source file:de.hofuniversity.iisys.liferay.workflows.LoggingWorkflowEngine.java

License:Open Source License

private void logExecContext(ExecutionContext ec, String indent) {
    if (ec != null) {
        fLogger.println(indent + "transitionName: " + ec.getTransitionName());
        fLogger.println(indent + "serviceContext:");
        logServiceContext(ec.getServiceContext(), indent + "\t");

        fLogger.println(indent + "workflowContext:");
        logMap(ec.getWorkflowContext(), indent + "\t");
    }//  w  w  w . j  a  v a 2s. c o  m
}