if(configurationManager==null) {
configurationManager = new MemoryConfigurationManager();
Properties defaultProperties = InjectHelper.instanceWithName(Properties.class, "smd-default-configuration");
if(defaultProperties!=null) {
List<ConfigurationParameter> parameters = new ArrayList<ConfigurationParameter>();
for (Map.Entry<Object, Object> entry : defaultProperties.entrySet()) {
String property = entry.getKey().toString();
String value = entry.getValue().toString();
if(value.equalsIgnoreCase("true") || value.equalsIgnoreCase("false")) {
parameters.add(new ConfigurationParameterEntity(property, ConfigurationParameter.Type.BOOLEAN, value));
}else {