com.ulisesbocchio.jasyptspringboot.environment.EncryptableEnvironment Maven / Gradle / Ivy
The newest version!
package com.ulisesbocchio.jasyptspringboot.environment;
import org.springframework.core.env.ConfigurableEnvironment;
import org.springframework.core.env.MutablePropertySources;
/**
* EncryptableEnvironment interface.
*
* @author Sergio.U.Bocchio
* @version $Id: $Id
*/
public interface EncryptableEnvironment extends ConfigurableEnvironment {
/**
* getOriginalPropertySources.
*
* @return a {@link org.springframework.core.env.MutablePropertySources} object
*/
MutablePropertySources getOriginalPropertySources();
/**
* setEncryptablePropertySources.
*
* @param propertySources a {@link org.springframework.core.env.MutablePropertySources} object
*/
void setEncryptablePropertySources(MutablePropertySources propertySources);
}