fix the interface path 71/67671/2
authorseshukm <seshu.kumar.m@huawei.com>
Wed, 19 Sep 2018 10:37:22 +0000 (18:37 +0800)
committerseshukm <seshu.kumar.m@huawei.com>
Wed, 19 Sep 2018 10:57:44 +0000 (18:57 +0800)
Change-Id: Iba07a1b11853177697f32ac14cef912b9691bfd9
Issue-ID: SO-1067
Signed-off-by: seshukm <seshu.kumar.m@huawei.com>
mso-api-handlers/mso-api-handler-infra/src/main/java/org/onap/so/apihandlerinfra/E2EServiceInstances.java
mso-api-handlers/mso-api-handler-infra/src/test/java/org/onap/so/apihandlerinfra/E2EServiceInstancesTest.java

index 1a95aa0..50ae29b 100644 (file)
@@ -80,8 +80,8 @@ import io.swagger.annotations.ApiOperation;
 
 
 @Component
-@Path("/e2eServiceInstances")
-@Api(value = "/e2eServiceInstances", description = "API Requests for E2E Service Instances")
+@Path("/onap/so/infra/e2eServiceInstances")
+@Api(value = "/onap/so/infra/e2eServiceInstances", description = "API Requests for E2E Service Instances")
 public class E2EServiceInstances {
 
        private HashMap<String, String> instanceIdMap = new HashMap<>();
index 66e29a8..a3d388a 100644 (file)
@@ -59,7 +59,7 @@ import com.github.tomakehurst.wiremock.http.Fault;
 public class E2EServiceInstancesTest extends BaseTest {
 private final ObjectMapper mapper = new ObjectMapper();        
        
-       private final String e2eServInstancesUri = "/e2eServiceInstances/";
+       private final String e2eServInstancesUri = "/onap/so/infra/e2eServiceInstances/";
        
        
        @Before