Package com.springsource.bundlor.support.properties

Examples of com.springsource.bundlor.support.properties.StringPropertiesSource


public class StandardOsgiProfileFactory implements OsgiProfileFactory {

    public PropertiesSource create(String osgiProfilePath, String osgiProfile) {
        if (StringUtils.hasText(osgiProfile)) {
            return new StringPropertiesSource(osgiProfile);
        }

        if (StringUtils.hasText(osgiProfilePath)) {
            return new FileSystemPropertiesSource(new File(osgiProfilePath));
        }
View Full Code Here

TOP

Related Classes of com.springsource.bundlor.support.properties.StringPropertiesSource

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.