String[] tags = extractWebBookmarkResourceTags(childWbr);
String wbrURI = childWbr.getSeeAlso().toString();
//don't add resources marked as IGNORED
if(!SynchronizationState.IGNORED.equals(childWbr.getSynchronizationState())){
//we use label here as it is mapped from Post.Description in post when it is imported and stored in repo
SynchronizationPost post = new SynchronizationPost(wbrURI,childWbr.getLabel(),wbrURI,childWbr.getIssueDate(),true,childWbr.getSynchronizationState(),tags);
result.add(post);
}
}
}
}