@Override
public ModelResult match(Resource subj, URI pred, Value obj, boolean inf, Resource... contexts)
throws StoreException
{
if (signer.isNotSignedBNode(subj, pred, obj, contexts)) {
return new ModelResultImpl(new EmptyCursor<Statement>());
}
return signer.sign(getDelegate().match(s(subj), pred, o(obj), inf, c(contexts)));
}