2019-04-09 09:52:45 +02:00
|
|
|
import com.sap.piper.GenerateDocumentation
|
2017-12-06 13:03:06 +02:00
|
|
|
import com.sap.piper.DefaultValueCache
|
2018-06-20 10:51:48 +02:00
|
|
|
import com.sap.piper.MapUtils
|
2017-12-06 13:03:06 +02:00
|
|
|
|
2018-10-09 17:09:55 +02:00
|
|
|
import groovy.transform.Field
|
|
|
|
|
2018-11-29 10:54:05 +02:00
|
|
|
@Field STEP_NAME = getClass().getName()
|
2018-10-09 17:09:55 +02:00
|
|
|
|
2019-03-29 13:14:01 +02:00
|
|
|
@Field Set GENERAL_CONFIG_KEYS = []
|
|
|
|
@Field Set STEP_CONFIG_KEYS = []
|
|
|
|
@Field Set PARAMETER_KEYS = []
|
|
|
|
|
2019-04-09 09:52:45 +02:00
|
|
|
/**
|
|
|
|
* Loads the pipeline library default values from the file `resources/default_pipeline_environment.yml`.
|
|
|
|
* Afterwards the values can be loaded by the method: `ConfigurationLoader.defaultStepConfiguration`
|
|
|
|
*/
|
|
|
|
@GenerateDocumentation
|
2018-08-30 16:33:07 +02:00
|
|
|
void call(Map parameters = [:]) {
|
2019-05-31 09:36:12 +02:00
|
|
|
DefaultValueCache.prepare(this, parameters)
|
2017-12-06 13:03:06 +02:00
|
|
|
}
|