Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / mock / StubResponseAPPC.java
index 2f2cf45..53c08a3 100644 (file)
@@ -16,7 +16,7 @@
  * See the License for the specific language governing permissions and 
  * limitations under the License. 
  * ============LICENSE_END========================================================= 
- */ 
+ */
 
 package org.onap.so.bpmn.mock;
 
@@ -24,7 +24,6 @@ import static com.github.tomakehurst.wiremock.client.WireMock.aResponse;
 import static com.github.tomakehurst.wiremock.client.WireMock.get;
 import static com.github.tomakehurst.wiremock.client.WireMock.put;
 import static com.github.tomakehurst.wiremock.client.WireMock.urlMatching;
-
 import com.github.tomakehurst.wiremock.WireMockServer;
 
 /**
@@ -33,29 +32,25 @@ import com.github.tomakehurst.wiremock.WireMockServer;
  */
 public class StubResponseAPPC {
 
-       public static void setupAllMocks() {
-
-       }
-
-       // start of Policy mocks
-       public static void MockAppcError(WireMockServer wireMockServer) {               
-               wireMockServer.stubFor(get(urlMatching("/events/.*"))
-               //      .withRequestBody(containing("APPC"))
-                       .willReturn(aResponse()
-                               .withStatus(200)
-                               .withHeader("Content-Type", "application/json")
-                               .withBodyFile("APPC/appc_error.json")));
-               wireMockServer.stubFor(put(urlMatching("/events/.*"))
-                               //      .withRequestBody(containing("APPC"))
-                                       .willReturn(aResponse()
-                                               .withStatus(200)
-                                               .withHeader("Content-Type", "application/json")
-                                               .withBodyFile("APPC/appc_error.json")));
-               
-               
-
-       }
-       
-       
-       
+    public static void setupAllMocks() {
+
+    }
+
+    // start of Policy mocks
+    public static void MockAppcError(WireMockServer wireMockServer) {
+        wireMockServer.stubFor(get(urlMatching("/events/.*"))
+                // .withRequestBody(containing("APPC"))
+                .willReturn(aResponse().withStatus(200).withHeader("Content-Type", "application/json")
+                        .withBodyFile("APPC/appc_error.json")));
+        wireMockServer.stubFor(put(urlMatching("/events/.*"))
+                // .withRequestBody(containing("APPC"))
+                .willReturn(aResponse().withStatus(200).withHeader("Content-Type", "application/json")
+                        .withBodyFile("APPC/appc_error.json")));
+
+
+
+    }
+
+
+
 }