Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / onap / so / bpmn / common / validation / FlowValidator.java
index c457a34..66a8de9 100644 (file)
@@ -22,24 +22,24 @@ package org.onap.so.bpmn.common.validation;
 
 import java.util.Optional;
 import java.util.Set;
-
 import org.onap.so.bpmn.common.BuildingBlockExecution;
 
 public interface FlowValidator {
 
-       /**
-        * Should this validator run for given bb
-        * @return
-        */
-       public boolean shouldRunFor(String bbName);
-       
-       /**
-        * Determines whether or not the workflow should be executed
+    /**
+     * Should this validator run for given bb
+     * 
+     * @return
+     */
+    public boolean shouldRunFor(String bbName);
+
+    /**
+     * Determines whether or not the workflow should be executed
+     * 
+     * 
+     * @param execution
+     * @return
+     */
+    public Optional<String> validate(BuildingBlockExecution execution);
 
-        * 
-        * @param execution
-        * @return
-        */
-       public Optional<String> validate(BuildingBlockExecution execution);
-       
 }