writer.startRDF();
for (Map.Entry<String, String> ns : config.getNamespaces().entrySet()) {
writer.handleNamespace(ns.getKey(), ns.getValue());
}
for (Statement st : config) {
writer.handleStatement(st);
}
writer.endRDF();
}
catch (UnsupportedRDFormatException e) {
throw new StoreConfigException(e);