From c49f0cf093f6818af97796d91fcac5ee4e4daaf3 Mon Sep 17 00:00:00 2001 From: Satoshi Fujii Date: Sun, 6 Dec 2020 15:21:08 +0000 Subject: 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 Issue-ID: USECASEUI-505 Change-Id: Ia0fc996e7f35730ca30eb54ebe6430c99a90180b --- .../org/onap/usecaseui/server/service/lcm/domain/vfc/VfcService.java | 4 ++-- 1 file 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 listNsTemplates(); - @POST("/api/catalog/v1/parsernsd") + @POST("/api/parser/v1/parsernsd") Call fetchNsTemplateData(@Body RequestBody body); - @POST("/api/catalog/v1/parser") + @POST("/api/parser/v1/parser") Call fetchTemplateInfo(@Body RequestBody body); @GET("/api/nslcm/v1/ns") -- cgit 1.2.3-korg