Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / so-bpmn-building-blocks / src / test / java / org / onap / so / MockLoggerDelegate.java
index 5d4d923..7b049c6 100644 (file)
@@ -24,12 +24,12 @@ import org.camunda.bpm.engine.delegate.DelegateExecution;
 import org.camunda.bpm.engine.delegate.JavaDelegate;
 
 public class MockLoggerDelegate implements JavaDelegate {
-       @Override
-       public void execute(DelegateExecution execution) throws Exception {
-               System.out.println("\n\n ..." + MockLoggerDelegate.class.getName() + " invoked by " + "processDefinitionId="
-                               + execution.getProcessDefinitionId() + ", activtyId=" + execution.getCurrentActivityId()
-                               + ", activtyName='" + execution.getCurrentActivityName() + "'" + ", processInstanceId="
-                               + execution.getProcessInstanceId() + ", businessKey=" + execution.getProcessBusinessKey()
-                               + ", executionId=" + execution.getId() + " \n\n");
-       }
+    @Override
+    public void execute(DelegateExecution execution) throws Exception {
+        System.out.println("\n\n ..." + MockLoggerDelegate.class.getName() + " invoked by " + "processDefinitionId="
+                + execution.getProcessDefinitionId() + ", activtyId=" + execution.getCurrentActivityId()
+                + ", activtyName='" + execution.getCurrentActivityName() + "'" + ", processInstanceId="
+                + execution.getProcessInstanceId() + ", businessKey=" + execution.getProcessBusinessKey()
+                + ", executionId=" + execution.getId() + " \n\n");
+    }
 }