aboutsummaryrefslogtreecommitdiffstats
path: root/server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java
diff options
context:
space:
mode:
Diffstat (limited to 'server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java')
-rw-r--r--server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java b/server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java
index 22bda7e4..62c9ed28 100644
--- a/server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java
+++ b/server/src/main/java/org/onap/usecaseui/server/controller/lcm/CustomerController.java
@@ -77,8 +77,8 @@ public class CustomerController {
@ResponseBody
@RequestMapping(value={"/uui-lcm/customers/{customerId}/service-subscriptions/{serviceType}"},method = RequestMethod.PUT,produces="application/json")
- public JSONObject createOrUpdateServiceType(HttpServletRequest request,@PathVariable String serviceType){
- return customerService.createOrUpdateServiceType(request, serviceType);
+ public JSONObject createOrUpdateServiceType(HttpServletRequest request,@PathVariable String serviceType,@PathVariable String customerId){
+ return customerService.createOrUpdateServiceType(request, serviceType,customerId);
}
@ResponseBody