//in case od sioc:post there are a lot of information, some of which can be ommited in bookmarks
if (siocDataUri.equals(SIOC.Post)) {
/* For each piece of information about the post, scheck wheter it is unneeded.
* If so, remove it from the graph containing the details. */
ClosableIterator<Statement> ss = tempModel.findStatements(stmt.getSubject(), null, null);
while (ss.hasNext()) {
Statement s = ss.next();
if(postExludedPredicates!=null)
for (String exclPred : postExludedPredicates) {
if (exclPred.equals(s.getPredicate().toString())) {