Skip to content

Commit af5df56

Browse files
committed
feat(processes): add missing fluent-setters
1 parent 7be6e0e commit af5df56

File tree

1 file changed

+57
-0
lines changed
  • qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/processes

1 file changed

+57
-0
lines changed

qqq-backend-core/src/main/java/com/kingsrook/qqq/backend/core/model/actions/processes/RunProcessInput.java

Lines changed: 57 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -453,6 +453,8 @@ public AsyncJobCallback getAsyncJobCallback()
453453
return asyncJobCallback;
454454
}
455455

456+
457+
456458
/*******************************************************************************
457459
** Getter for startAtStep
458460
*******************************************************************************/
@@ -483,4 +485,59 @@ public RunProcessInput withStartAtStep(String startAtStep)
483485
}
484486

485487

488+
489+
/*******************************************************************************
490+
* Fluent setter for frontendStepBehavior
491+
*
492+
* @param frontendStepBehavior
493+
* @return this
494+
*******************************************************************************/
495+
public RunProcessInput withFrontendStepBehavior(FrontendStepBehavior frontendStepBehavior)
496+
{
497+
this.frontendStepBehavior = frontendStepBehavior;
498+
return (this);
499+
}
500+
501+
502+
503+
/*******************************************************************************
504+
* Fluent setter for startAfterStep
505+
*
506+
* @param startAfterStep
507+
* @return this
508+
*******************************************************************************/
509+
public RunProcessInput withStartAfterStep(String startAfterStep)
510+
{
511+
this.startAfterStep = startAfterStep;
512+
return (this);
513+
}
514+
515+
516+
517+
/*******************************************************************************
518+
* Fluent setter for processUUID
519+
*
520+
* @param processUUID
521+
* @return this
522+
*******************************************************************************/
523+
public RunProcessInput withProcessUUID(String processUUID)
524+
{
525+
this.processUUID = processUUID;
526+
return (this);
527+
}
528+
529+
530+
531+
/*******************************************************************************
532+
* Fluent setter for asyncJobCallback
533+
*
534+
* @param asyncJobCallback
535+
* @return this
536+
*******************************************************************************/
537+
public RunProcessInput withAsyncJobCallback(AsyncJobCallback asyncJobCallback)
538+
{
539+
this.asyncJobCallback = asyncJobCallback;
540+
return (this);
541+
}
542+
486543
}

0 commit comments

Comments
 (0)