
com.github.mowedgrass.jasyptgradleboot.task.file.property.PropertyValueProcessor.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jasypt-gradle-boot-plugin Show documentation
Show all versions of jasypt-gradle-boot-plugin Show documentation
jasypt spring boot gradle plugin
The newest version!
package com.github.mowedgrass.jasyptgradleboot.task.file.property
import com.github.mowedgrass.jasyptgradleboot.task.file.process.definition.executor.ProcessExecutor
import org.jasypt.encryption.StringEncryptor
class PropertyValueProcessor {
protected final StringEncryptor encryptor
PropertyValueProcessor(StringEncryptor encryptor) {
this.encryptor = encryptor
}
public String processValue(String value, ProcessExecutor executor) {
executor.process(value, encryptor)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy