Skip to content

Commit

Permalink
rest: rename 'job/run' web service
Browse files Browse the repository at this point in the history
  • Loading branch information
imedina committed Sep 22, 2024
1 parent 0c6bbf9 commit 88ac8ba
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ public Response kill(
@Path("/run")
@Consumes(MediaType.APPLICATION_JSON)
@ApiOperation(value = BinaryExecutor.DESCRIPTION, response = Job.class)
public Response updateByPost(
public Response runByPost(
@ApiParam(value = ParamConstants.STUDY_DESCRIPTION) @QueryParam(ParamConstants.STUDY_PARAM) String study,
@ApiParam(value = ParamConstants.JOB_ID_CREATION_DESCRIPTION) @QueryParam(ParamConstants.JOB_ID) String jobName,
@ApiParam(value = ParamConstants.JOB_DESCRIPTION_DESCRIPTION) @QueryParam(ParamConstants.JOB_DESCRIPTION) String jobDescription,
Expand Down Expand Up @@ -309,7 +309,7 @@ public Response distinct(
@ApiImplicitParam(name = QueryOptions.EXCLUDE, value = ParamConstants.EXCLUDE_DESCRIPTION,
dataType = "string", paramType = "query")
})
public Response updateByPost(
public Response runByPost(
@ApiParam(value = ParamConstants.JOBS_DESCRIPTION, required = true) @PathParam("jobs") String jobStr,
@ApiParam(value = ParamConstants.STUDY_DESCRIPTION) @QueryParam(ParamConstants.STUDY_PARAM) String studyStr,
@ApiParam(value = ParamConstants.INCLUDE_RESULT_DESCRIPTION, defaultValue = "false") @QueryParam(ParamConstants.INCLUDE_RESULT_PARAM) boolean includeResult,
Expand Down

0 comments on commit 88ac8ba

Please sign in to comment.