if (useDatabase.equalsIgnoreCase(TRUE)) {
String jdbcUrl = confmanager.getConfig(ConfigKeys.MSG_BOX_JDBC_URL);
String jdbcDriver = confmanager.getConfig(ConfigKeys.MSG_BOX_JDBC_DRIVER);
msgBoxStorage = new DatabaseStorageImpl(jdbcUrl, jdbcDriver, time);
} else {
msgBoxStorage = new InMemoryImpl(time);
}
configurationcontext.setProperty(MsgBoxCommonConstants.MSGBOX_STORAGE, msgBoxStorage);
}