Update SO url from v2 to v5 09/21309/2
authorHockla, Ali (ah999m) <ah999m@att.com>
Mon, 30 Oct 2017 16:14:54 +0000 (11:14 -0500)
committerHockla, Ali (ah999m) <ah999m@att.com>
Mon, 30 Oct 2017 16:44:07 +0000 (11:44 -0500)
Issue-ID: POLICY-401
Change-Id: Id1be63d2f61bc0d9d8f15df7573af2c7307c1c31
Signed-off-by: Hockla, Ali (ah999m) <ah999m@att.com>
controlloop/common/model-impl/so/src/main/java/org/onap/policy/so/SOManager.java
controlloop/common/simulators/src/main/java/org/onap/policy/simulators/SoSimulatorJaxRs.java
controlloop/common/simulators/src/test/java/org/onap/policy/simulators/SoSimulatorTest.java

index c6d0994..fb2cc3d 100644 (file)
@@ -149,7 +149,7 @@ public final class SOManager {
                                String username = PolicyEngine.manager.getEnvironmentProperty("so.username");
                                String password = PolicyEngine.manager.getEnvironmentProperty("so.password");
                                
-                               String url = serverRoot + "/serviceInstances/v2/" + serviceInstanceId + "/vnfs/" + vnfInstanceId + "/vfModulesHTTPS/1.1";
+                               String url = serverRoot + "/serviceInstances/v5/" + serviceInstanceId + "/vnfs/" + vnfInstanceId + "/vfModulesHTTPS/1.1";
                                
                                String auth = username + ":" + password;
                                
index b9e6577..a0435cf 100644 (file)
@@ -34,7 +34,7 @@ import org.onap.policy.so.util.Serialization;
 public class SoSimulatorJaxRs {
        
        @POST
-       @Path("/v2/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModulesHTTPS/1.1")
+       @Path("/v5/{serviceInstanceId}/vnfs/{vnfInstanceId}/vfModulesHTTPS/1.1")
        @Consumes(MediaType.APPLICATION_JSON)
        @Produces("application/json")
        public String SoPostQuery(@PathParam("serviceInstanceId") String serviceInstanceId, @PathParam("vnfInstanceId") String vnfInstanceId, String req)
index 683da86..d989ba0 100644 (file)
@@ -138,7 +138,7 @@ public class SoSimulatorTest {
   public void testResponse() {
     final String request = Serialization.gsonPretty.toJson(this.createTestRequest());
     final Pair<Integer, String> httpDetails = RESTManager.post(
-        "http://localhost:6667/serviceInstances/v2/12345/vnfs/12345/vfModulesHTTPS/1.1", "username",
+        "http://localhost:6667/serviceInstances/v5/12345/vnfs/12345/vfModulesHTTPS/1.1", "username",
         "password", new HashMap<>(), "application/json", request);
     assertNotNull(httpDetails);
     final SOResponse response = Serialization.gsonPretty.fromJson(httpDetails.b, SOResponse.class);