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