diff options
author | Amichai Hemli <amichai.hemli@intl.att.com> | 2019-09-15 12:51:06 +0300 |
---|---|---|
committer | Amichai Hemli <amichai.hemli@intl.att.com> | 2019-09-15 12:51:06 +0300 |
commit | 24f143d8537686bc7a5b7540547fc40ab6523012 (patch) | |
tree | 841f39862b92a76314404fd7908d30d84076250e | |
parent | cbd15d952dfb6ad9b95b0da18472a8c4d0794989 (diff) |
Remove redundant get vnf data endpoint of aaiController (fix)
As we are now using AaiController2, the AaiController endpoint of change-management is redundant
Issue-ID: VID-596
Signed-off-by: Amichai Hemli <amichai.hemli@intl.att.com>
Change-Id: I68289eb5acb02af75c052e891dc6f77a48dc62c7
-rw-r--r-- | vid-app-common/src/main/java/org/onap/vid/controller/AaiController.java | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/vid-app-common/src/main/java/org/onap/vid/controller/AaiController.java b/vid-app-common/src/main/java/org/onap/vid/controller/AaiController.java index 2b3ad60ea..388242371 100644 --- a/vid-app-common/src/main/java/org/onap/vid/controller/AaiController.java +++ b/vid-app-common/src/main/java/org/onap/vid/controller/AaiController.java @@ -240,18 +240,6 @@ public class AaiController extends RestrictedBaseController { return responseEntity; } - - @RequestMapping(value = "/get_vnf_data_by_globalid_and_service_type/{globalCustomerId}/{serviceType}", - method = RequestMethod.GET, - produces = MediaType.APPLICATION_JSON_VALUE) - public ResponseEntity<String> getVnfDataByGlobalIdAndServiceType( - @PathVariable("globalCustomerId") String globalCustomerId, - @PathVariable("serviceType") String serviceType) throws IOException { - - AaiResponse<AaiGetVnfResponse> resp = aaiService.getVNFData(globalCustomerId, serviceType); - return aaiResponseToResponseEntity(resp); - } - @RequestMapping(value = "/aai_refresh_subscribers", method = RequestMethod.GET, produces = MediaType.APPLICATION_JSON_VALUE) public ResponseEntity<String> doRefreshSubscriberList() { return refreshSubscriberList(); |