Delegator removeByXXX do not trigger remove ECA
-----------------------------------------------
                 Key: OFBIZ-3554
                 URL: 
https://issues.apache.org/jira/browse/OFBIZ-3554             Project: OFBiz
          Issue Type: Bug
          Components: framework
    Affects Versions: Release Branch 9.04, SVN trunk
            Reporter: Wickersheimer Jeremy
The removeByAnd / removeByCondition and by extension i think the removeAll methods do not trigger the remove ECA on the entities.
So for example:
{code:title=No trigger|borderStyle=solid}
 removeByAnd("FooBar", map);
{code} 
Compared to:
{code:title=With trigger|borderStyle=solid}
 List entities = delegator.findByAnd("FooBar", map);
 for (GenericValue v : entities) {
   delegator.removeValue(v);
  }
{code}
-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.