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

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

Introduction

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

Prototype

public ServiceContext getServiceContext() 

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");
    }/*from  ww w  .ja  va2 s .com*/
}