{
for (Value value : config.filter(null, REPOSITORYID, null).objects()) {
removeConfig(value.stringValue());
}
Model model = new LinkedHashModel();
Resource context = vf.createBNode(id);
model.add(context, RDF.TYPE, REPOSITORY_CONTEXT);
model.add(context, REPOSITORYID, new LiteralImpl(id), context);
for (Statement st : config) {
model.add(st.getSubject(), st.getPredicate(), st.getObject(), context);
}
addSystemModel(model);
}