All Downloads are FREE. Search and download functionalities are using the official Maven repository.

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); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy