public void notifyDeleteArray( final Graph g, final Triple[] triples )
{
Triple[] deleted = triples;
if (g instanceof SecuredGraphImpl)
{
final SecuredGraphImpl sg = (SecuredGraphImpl) g;
final SecurityEvaluator evaluator = CachedSecurityEvaluator
.getInstance(sg.getSecurityEvaluator(), runAs);
if (evaluator.evaluateAny(SecuredGraphEventManager.DELETE,
sg.getModelNode()))
{
if (!evaluator.evaluateAny(SecuredGraphEventManager.DELETE,
sg.getModelNode(),
SecuredItemImpl.convert(Triple.ANY)))
{
final List<Triple> list = wrapPermIterator(sg,
Arrays.asList(triples).iterator(),
SecuredGraphEventManager.DELETE).toList();