github.com/ouraigua/jenkins-library@v0.0.0-20231028010029-fbeaf2f3aa9b/src/com/sap/piper/variablesubstitution/ExecutionContext.groovy (about)

     1  package com.sap.piper.variablesubstitution
     2  
     3  /**
     4   * A simple class to capture context information
     5   * of the execution of yamlSubstituteVariables.
     6   */
     7  class ExecutionContext {
     8      /**
     9       * Property indicating if the execution
    10       * of yamlSubstituteVariables actually
    11       * substituted any variables at all.
    12       *
    13       * Does NOT indicate that ALL variables were
    14       * actually replaced. If set to true, if just indicates
    15       * that some or all variables have been replaced.
    16       */
    17      Boolean variablesReplaced = false
    18  }