X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=webapp-backend%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fric%2Fportal%2Fdashboard%2Fcontroller%2FAnrXappController.java;h=aa7b443fe189a719beadf7d1dbac41d519fed8da;hb=refs%2Fchanges%2F84%2F184%2F2;hp=6c0ca4bd4b17dc2f30332e8e3bd8db937e0ba25a;hpb=7af223f6899ed153028f0261e72baec6b4a247d3;p=portal%2Fric-dashboard.git diff --git a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AnrXappController.java b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AnrXappController.java index 6c0ca4bd..aa7b443f 100644 --- a/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AnrXappController.java +++ b/webapp-backend/src/main/java/org/oransc/ric/portal/dashboard/controller/AnrXappController.java @@ -101,7 +101,7 @@ public class AnrXappController { @ApiOperation(value = "Query NCRT of all cells, all or one gNB(s)", response = NeighborCellRelationTable.class) @RequestMapping(value = "/cell", method = RequestMethod.GET) - public NeighborCellRelationTable queryNcrtAllCells( // + public NeighborCellRelationTable getNcrtInfo( // @RequestParam(name = GGNBID, required = false) String ggnbId, // @RequestParam(name = START_INDEX, required = false) String startIndex, // @RequestParam(name = LIMIT, required = false) Integer limit) { @@ -111,7 +111,7 @@ public class AnrXappController { @ApiOperation(value = "Query NCRT of a single serving cell", response = NeighborCellRelationTable.class) @RequestMapping(value = "/cell/" + CELL_ID + "/{" + CELL_ID + "}", method = RequestMethod.GET) - public NeighborCellRelationTable queryNcrtServingCell(@PathVariable(CELL_ID) String cellIdentifier, // + public NeighborCellRelationTable getCellNcrtInfo(@PathVariable(CELL_ID) String cellIdentifier, // @RequestParam(name = START_INDEX, required = false) String startIndex, // @RequestParam(name = LIMIT, required = false) Integer limit, @RequestParam(name = NRPCI, required = false) String nrpci, @@ -131,13 +131,17 @@ public class AnrXappController { response.setStatus(healthApi.getApiClient().getStatusCode().value()); } + /* + * TODO: DELETE should not have a body - the path should identify the resource to be deleted. + */ @ApiOperation(value = "Delete neighbor cell relation based on Source Cell NR CGI and Target Cell NR PCI / NR CGI") @RequestMapping(value = "/cell/" + CELL_ID + "/{" + CELL_ID + "}", method = RequestMethod.DELETE) - public void modifyNcrt(@PathVariable(CELL_ID) String cellIdentifier, // + public void deleteNcrt(@PathVariable(CELL_ID) String cellIdentifier, // @RequestBody NeighborCellRelationDelTable ncrtDelTable, // HttpServletResponse response) { logger.debug("modifyNcrt: cellIdentifier {} delTable {}", cellIdentifier, ncrtDelTable); ncrtApi.deleteNcrt(cellIdentifier, ncrtDelTable); response.setStatus(healthApi.getApiClient().getStatusCode().value()); } + }