Skip to content

Commit

Permalink
Merge pull request #198 from OpsMx/OP-13596-gate
Browse files Browse the repository at this point in the history
Op 13596 gate
  • Loading branch information
sriharshakancharla authored Apr 27, 2022
2 parents 2c66776 + 5093136 commit d6cc1b7
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -286,9 +286,14 @@ class OpsmxAutopilotController {
@PathVariable("source1") String source1,
@PathVariable("source2") String source2,
@PathVariable("source3") String source3,
@RequestParam(value = "verificationType", required = false) String verificationType) {
@RequestParam(value = "pageNo", required = false) Integer pageNo,
@RequestParam(value = "pageLimit", required = false) Integer pageLimit,
@RequestParam(value = "noOfDays", required = false) Integer noOfDays,
@RequestParam(value = "search", required = false) String search,
@RequestParam(value = "verificationType", required = false) String verificationType,
@RequestParam(value = "verificationFailures", required = false) String verificationFailures) {

return opsmxAutopilotService.getAutoResponse6(type, source, source1, source2, source3, verificationType)
return opsmxAutopilotService.getAutoResponse6(type, source, source1, source2, source3,pageNo,pageLimit,noOfDays,search,verificationType,verificationFailures)
}

@ApiOperation(value = "Endpoint for autopilot rest services")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,12 @@ interface OpsmxAutopilotService {
@Path('source1') String source1,
@Path('source2') String source2,
@Path('source3') String source3,
@Query("verificationType") String verificationType)
@Query("pageNo") Integer pageNo,
@Query("pageLimit") Integer pageLimit,
@Query("noOfDays") Integer noOfDays,
@Query("search") String search,
@Query("verificationType") String verificationType,
@Query("verificationFailures") String verificationFailures)

@GET("/autopilot/{type}/{source}/{source1}/{source2}/{source3}/{source4}")
Object getAutoResponse7(@Path('type') String type,
Expand Down

0 comments on commit d6cc1b7

Please sign in to comment.