Skip to content

Commit

Permalink
fixing checkstyle
Browse files Browse the repository at this point in the history
Signed-off-by: Joshua Palis <[email protected]>
  • Loading branch information
joshpalis committed Mar 27, 2024
1 parent ccda5a7 commit ba21474
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ public class RestOrchestrateAction extends BaseRestHandler {

private static final String ORCHESTRATE_ACTION = "orchestrate_action";

/*
* Creates a new RestOrchestrateAction
/**
* Creates a new RestOrchestrateAction instance
*/
public RestOrchestrateAction() {}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,18 @@ public OrchestrateRequest(StreamInput in) throws IOException {
this.userInputs = in.readMap(StreamInput::readString, StreamInput::readString);
}

/**
* Returns the workflow ID
* @return the workflow ID
*/
public String getWorkflowId() {
return this.workflowId;
}

/**
* Returns the user inputs map
* @return the user inputs map
*/
public Map<String, String> getUserInputs() {
return this.userInputs;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@ public class SearchResponseProcessorStep implements WorkflowStep {

private static final Logger logger = LogManager.getLogger(SearchResponseProcessorStep.class);
private final SearchPipelineService searchPipelineService;
/**
* The name of the SearchResponseProcessor step
*/
public static final String NAME = "search_response_processor";

/**
Expand Down

0 comments on commit ba21474

Please sign in to comment.