package com.ydtech.config; import org.springframework.boot.context.properties.ConfigurationProperties; import org.springframework.stereotype.Component; @Component @ConfigurationProperties(prefix = "master.password") public class MasterPasswordConfig { private String ciphertext; private String salt; public String getCiphertext() { return ciphertext; } public void setCiphertext(String ciphertext) { this.ciphertext = ciphertext; } public String getSalt() { return salt; } public void setSalt(String salt) { this.salt = salt; } }