mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
28 lines
723 B
Groovy
28 lines
723 B
Groovy
class commonPipelineEnvironment implements Serializable {
|
|
private Map configProperties = [:]
|
|
|
|
private String mtarFilePath
|
|
|
|
def setConfigProperties(map) {
|
|
configProperties = map
|
|
}
|
|
def getConfigProperties() {
|
|
return configProperties
|
|
}
|
|
def setConfigProperty(property, value) {
|
|
configProperties[property] = value
|
|
}
|
|
def getConfigProperty(property) {
|
|
if (configProperties[property] != null)
|
|
return configProperties[property].trim()
|
|
else
|
|
return configProperties[property]
|
|
}
|
|
def getMtarFilePath() {
|
|
return mtarFilePath
|
|
}
|
|
void setMtarFilePath(mtarFilePath) {
|
|
this.mtarFilePath = mtarFilePath
|
|
}
|
|
}
|