Skip to content

Commit

Permalink
worked on delete tool connector approval gate
Browse files Browse the repository at this point in the history
  • Loading branch information
ramyaravi-opsmx committed Dec 31, 2020
1 parent 0bf2d0b commit 65e9ec5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -150,8 +150,8 @@ class OpsmxVisibilityController {
@PathVariable("type") String type,
@PathVariable("source") String source,
@PathVariable("source1") String source1,
@RequestParam(value = "source2", required = false) String source2) {
return opsmxVisibilityService.deleteVisibilityResponse4(version, type, source, source1, source2)
@RequestParam(value = "datasourceName", required = false) String datasourceName) {
return opsmxVisibilityService.deleteVisibilityResponse4(version, type, source, source1, datasourceName)
}

@ApiOperation(value = "Endpoint for visibility rest services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ interface OpsmxVisibilityService {
@Path('type') String type,
@Path('source') String source,
@Path('source1') String source1,
@Query("source2") String source2)
@Query("datasourceName") String datasourceName)

@DELETE("/visibilityservice/{version}/{type}/{source}/{source1}/{source2}")
Object deleteVisibilityResponse5(@Path('version') String version,
Expand Down

0 comments on commit 65e9ec5

Please sign in to comment.