diff options
author | Ittay Stern <ittay.stern@att.com> | 2019-07-11 15:54:36 +0300 |
---|---|---|
committer | Ittay Stern <ittay.stern@att.com> | 2019-07-11 16:53:33 +0300 |
commit | 7befef8d013fb9e5627a50f7fb1e1937eb27e483 (patch) | |
tree | 2e385799c4a26cf924767d31322fe809dd2ddcfe /vid-app-common/src | |
parent | 5f458465bf2fb660a474e27f50bb876b3737a143 (diff) |
Change tests and log to expect "Browse SDC" (was "ASDC")
Issue-ID: VID-516
Change-Id: I481880df1796721128b07e3dc3ae83085fc097e8
Signed-off-by: Ittay Stern <ittay.stern@att.com>
Diffstat (limited to 'vid-app-common/src')
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/controller/VidController.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/controller/VidController.java b/vid-app-common/src/main/java/org/onap/vid/controller/VidController.java index 9d557a096..15bc5ed7c 100644 --- a/vid-app-common/src/main/java/org/onap/vid/controller/VidController.java +++ b/vid-app-common/src/main/java/org/onap/vid/controller/VidController.java @@ -66,7 +66,7 @@ public class VidController extends RestrictedBaseController { */ @RequestMapping(value = {"/rest/models/services"}, method = RequestMethod.GET) public SecureServices getServices(HttpServletRequest request) { - LOG.info("Start API for browse ASDC was called"); + LOG.info("Start API for browse SDC was called"); SecureServices secureServices = new SecureServices(); List<Role> roles = roleProvider.getUserRoles(request); secureServices.setServices(aaiService.getServicesByDistributionStatus()); |