Package org.apache.deltaspike.core.api.config

Examples of org.apache.deltaspike.core.api.config.PropertyFileConfig


     */
    private List<ConfigSource> createPropertyConfigSource(Class<? extends PropertyFileConfig> propertyFileConfigClass)
    {
        try
        {
            PropertyFileConfig propertyFileConfig = propertyFileConfigClass.newInstance();
            EnvironmentPropertyConfigSourceProvider environmentPropertyConfigSourceProvider
                = new EnvironmentPropertyConfigSourceProvider(propertyFileConfig.getPropertyFileName());

            return environmentPropertyConfigSourceProvider.getConfigSources();
        }
        catch (InstantiationException e)
        {
View Full Code Here

TOP

Related Classes of org.apache.deltaspike.core.api.config.PropertyFileConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.