Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / TestApplicationConfig.java
index c483f13..d2bc728 100644 (file)
@@ -24,73 +24,71 @@ import java.lang.reflect.Field;
 import java.lang.reflect.Modifier;
 import java.util.ArrayList;
 import java.util.List;
-
 import org.onap.so.bpmn.common.WorkflowTestTransformer;
 import org.springframework.cloud.contract.wiremock.WireMockConfigurationCustomizer;
 import org.springframework.context.annotation.Bean;
 import org.springframework.context.annotation.Configuration;
 import org.springframework.context.annotation.Profile;
-
 import com.github.tomakehurst.wiremock.core.WireMockConfiguration;
 import com.github.tomakehurst.wiremock.extension.ResponseTransformer;
 
 @Configuration
 @Profile({"test"})
 public class TestApplicationConfig {
-       
-       @Bean
-       protected ResponseTransformer[] transformerArray() {
-               // Process WorkflowTestTransformer annotations
-               List<ResponseTransformer> transformerList = new ArrayList<ResponseTransformer>();
-
-               for (Field field : getClass().getFields()) {
-                       WorkflowTestTransformer annotation = field.getAnnotation(WorkflowTestTransformer.class);
-
-                       if (annotation == null) {
-                               continue;
-                       }
-
-                       if (!Modifier.isStatic(field.getModifiers())) {
-                               throw new RuntimeException(field.getDeclaringClass().getName()
-                                       + "#" + field.getName() + " has a @WorkflowTestTransformer "
-                                       + " annotation but it is not declared static");
-                       }
-
-                       ResponseTransformer transformer;
-
-                       try {
-                               transformer = (ResponseTransformer) field.get(null);
-                       } catch (IllegalAccessException e) {
-                               throw new RuntimeException(field.getDeclaringClass().getName()
-                                       + "#" + field.getName() + " is not accessible", e);
-                       } catch (ClassCastException e) {
-                               throw new RuntimeException(field.getDeclaringClass().getName()
-                                       + "#" + field.getName() + " is not a ResponseTransformer", e);
-                       }
-
-                       if (transformer == null) {
-                               continue;
-                       }
-
-                       transformerList.add(transformer);
-               }
-
-               ResponseTransformer[] transformerArray =
-                       transformerList.toArray(new ResponseTransformer[transformerList.size()]);
-
-               optionsCustomizer(transformerArray);
-               
-               return transformerArray;
-       }
-       
-       @Bean
-       WireMockConfigurationCustomizer optionsCustomizer(ResponseTransformer[] transformerArray) {
-               return new WireMockConfigurationCustomizer() {
-                       @Override
-                       public void customize(WireMockConfiguration options) {
-                               options.extensions(transformerArray);
-                       }
-               };
-       }
-       
+
+    @Bean
+    protected ResponseTransformer[] transformerArray() {
+        // Process WorkflowTestTransformer annotations
+        List<ResponseTransformer> transformerList = new ArrayList<ResponseTransformer>();
+
+        for (Field field : getClass().getFields()) {
+            WorkflowTestTransformer annotation = field.getAnnotation(WorkflowTestTransformer.class);
+
+            if (annotation == null) {
+                continue;
+            }
+
+            if (!Modifier.isStatic(field.getModifiers())) {
+                throw new RuntimeException(field.getDeclaringClass().getName() + "#" + field.getName()
+                        + " has a @WorkflowTestTransformer " + " annotation but it is not declared static");
+            }
+
+            ResponseTransformer transformer;
+
+            try {
+                transformer = (ResponseTransformer) field.get(null);
+            } catch (IllegalAccessException e) {
+                throw new RuntimeException(
+                        field.getDeclaringClass().getName() + "#" + field.getName() + " is not accessible", e);
+            } catch (ClassCastException e) {
+                throw new RuntimeException(
+                        field.getDeclaringClass().getName() + "#" + field.getName() + " is not a ResponseTransformer",
+                        e);
+            }
+
+            if (transformer == null) {
+                continue;
+            }
+
+            transformerList.add(transformer);
+        }
+
+        ResponseTransformer[] transformerArray =
+                transformerList.toArray(new ResponseTransformer[transformerList.size()]);
+
+        optionsCustomizer(transformerArray);
+
+        return transformerArray;
+    }
+
+    @Bean
+    WireMockConfigurationCustomizer optionsCustomizer(ResponseTransformer[] transformerArray) {
+        return new WireMockConfigurationCustomizer() {
+            @Override
+            public void customize(WireMockConfiguration options) {
+                options.extensions(transformerArray);
+            }
+        };
+    }
+
 }