aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSatoshi Fujii <fujii-satoshi@jp.fujitsu.com>2020-12-06 15:21:08 +0000
committerSatoshi Fujii <fujii-satoshi@jp.fujitsu.com>2020-12-06 15:41:34 +0000
commitc49f0cf093f6818af97796d91fcac5ee4e4daaf3 (patch)
tree32d89f020068083e962ca03b2815d9d69b30a210
parenta60a99e8440fbbe37fb6a27a6aaa29232116580d (diff)
Fix parser api path in VfcService
Service template parsing is not working due to etsicatalog api path change. This change fixes the api path in VfcService. Signed-off-by: Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> Issue-ID: USECASEUI-505 Change-Id: Ia0fc996e7f35730ca30eb54ebe6430c99a90180b
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java
index 172c603e..c32bca48 100644
--- a/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java
+++ b/server/src/main/java/org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java
@@ -49,10 +49,10 @@ public interface VfcService {
@GET("/api/catalog/v1/nspackages")
Call<ResponseBody> listNsTemplates();
- @POST("/api/catalog/v1/parsernsd")
+ @POST("/api/parser/v1/parsernsd")
Call<ResponseBody> fetchNsTemplateData(@Body RequestBody body);
- @POST("/api/catalog/v1/parser")
+ @POST("/api/parser/v1/parser")
Call<ResponseBody> fetchTemplateInfo(@Body RequestBody body);
@GET("/api/nslcm/v1/ns")