final String moduleName) {
final List<Element> databaseProperties = XmlUtils
.findElements(jdbcDatabase.getConfigPrefix() + "/properties/*",
configuration);
for (final Element property : databaseProperties) {
projectOperations.addProperty(moduleName, new Property(property));
}
final List<Element> providerProperties = XmlUtils.findElements(
ormProvider.getConfigPrefix() + "/properties/*", configuration);
for (final Element property : providerProperties) {
projectOperations.addProperty(moduleName, new Property(property));
}
}