inputStream = url.openStream();
final ResourceBundle props = new PropertyResourceBundle(inputStream);
if (props != null) {
for (final Object o : props.keySet()) {
final String key = (String) o;
frameworkProps.put(key, props.getString(key));
if (key.equals(CONFIG_ERRAI_SERIALIZABLE_TYPE)) {