From: Luji7 Date: Tue, 24 Oct 2017 12:00:07 +0000 (+0800) Subject: Fix lcm url wrong. X-Git-Tag: v1.1.0~18 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F20347%2F1;p=usecase-ui%2Fserver.git Fix lcm url wrong. Change-Id: I3f2776ed1d82a712ba378e16381feaa98a621730 Issue-id: USECASEUI-53 Signed-off-by: Luji7 --- diff --git a/server/src/main/java/org/onap/usecaseui/server/controller/lcm/ServiceLcmController.java b/server/src/main/java/org/onap/usecaseui/server/controller/lcm/ServiceLcmController.java index 2ef1c545..9e6a690a 100644 --- a/server/src/main/java/org/onap/usecaseui/server/controller/lcm/ServiceLcmController.java +++ b/server/src/main/java/org/onap/usecaseui/server/controller/lcm/ServiceLcmController.java @@ -46,7 +46,7 @@ public class ServiceLcmController { } @ResponseBody - @RequestMapping(value = {"/uui-lcm/services/"}, method = RequestMethod.POST , produces = "application/json") + @RequestMapping(value = {"/uui-lcm/services"}, method = RequestMethod.POST , produces = "application/json") public ServiceOperation instantiateService(HttpServletRequest request){ return serviceLcmService.instantiateService(request); }