Class ApprovalFlowStep

java.lang.Object
com.strongdm.api.ApprovalFlowStep

public class ApprovalFlowStep extends Object
An approval step for an approval workflow. Specifies approvers and conditions for approval to be granted.
  • Constructor Details

    • ApprovalFlowStep

      public ApprovalFlowStep()
  • Method Details

    • getApprovers

      public List<ApprovalFlowApprover> getApprovers()
      The approvers for this approval step
    • setApprovers

      public void setApprovers(List<ApprovalFlowApprover> in)
      The approvers for this approval step
    • getQuantifier

      public String getQuantifier()
      Whether "any" or "all" approvers must approve for this approval step to pass. Optional, defaults to "any".
    • setQuantifier

      public void setQuantifier(String in)
      Whether "any" or "all" approvers must approve for this approval step to pass. Optional, defaults to "any".
    • getSkipAfter

      public Duration getSkipAfter()
      Duration after which this approval step will be skipped if no approval is given. Optional, if not provided an approver must approve before the step passes.
    • setSkipAfter

      public void setSkipAfter(Duration in)
      Duration after which this approval step will be skipped if no approval is given. Optional, if not provided an approver must approve before the step passes.