Interface ApprovalRuleUpdate


public interface ApprovalRuleUpdate
ApprovalRuleUpdate
Example to create an instance using the builder pattern

     ApprovalRuleUpdate approvalRuleUpdate = ApprovalRuleUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Method Details

    • getVersion

      @NotNull @NotNull Long getVersion()

      Expected version of the ApprovalRule to which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.

      Returns:
      version
    • getActions

      @NotNull @Valid @NotNull @Valid List<ApprovalRuleUpdateAction> getActions()

      Update actions to be performed on the ApprovalRule.

      Returns:
      actions
    • setVersion

      void setVersion(Long version)

      Expected version of the ApprovalRule to which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.

      Parameters:
      version - value to be set
    • setActions

      void setActions(ApprovalRuleUpdateAction... actions)

      Update actions to be performed on the ApprovalRule.

      Parameters:
      actions - values to be set
    • setActions

      void setActions(List<ApprovalRuleUpdateAction> actions)

      Update actions to be performed on the ApprovalRule.

      Parameters:
      actions - values to be set
    • of

      static ApprovalRuleUpdate of()
      factory method
      Returns:
      instance of ApprovalRuleUpdate
    • of

      static ApprovalRuleUpdate of(ApprovalRuleUpdate template)
      factory method to create a shallow copy ApprovalRuleUpdate
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • deepCopy

      factory method to create a deep copy of ApprovalRuleUpdate
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static ApprovalRuleUpdateBuilder builder()
      builder factory method for ApprovalRuleUpdate
      Returns:
      builder
    • builder

      static ApprovalRuleUpdateBuilder builder(ApprovalRuleUpdate template)
      create builder for ApprovalRuleUpdate instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withApprovalRuleUpdate

      default <T> T withApprovalRuleUpdate(Function<ApprovalRuleUpdate,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ApprovalRuleUpdate> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference