diff options
author | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2020-12-06 15:21:08 +0000 |
---|---|---|
committer | Satoshi Fujii <fujii-satoshi@jp.fujitsu.com> | 2020-12-06 15:41:34 +0000 |
commit | c49f0cf093f6818af97796d91fcac5ee4e4daaf3 (patch) | |
tree | 32d89f020068083e962ca03b2815d9d69b30a210 | |
parent | a60a99e8440fbbe37fb6a27a6aaa29232116580d (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.java | 4 |
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") |