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

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

Introduction

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

Prototype

public String getTransitionName() 

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 a2  s  . c om
}