Class BulkDeleteOperation

java.lang.Object
org.flowable.common.engine.impl.db.BulkDeleteOperation

public class BulkDeleteOperation extends Object
Use this to execute a dedicated delete statement. It is important to note there won't be any optimistic locking checks done for these kind of delete operations!
Author:
Joram Barrez
  • Field Details

    • statement

      protected String statement
    • parameter

      protected Object parameter
  • Constructor Details

    • BulkDeleteOperation

      public BulkDeleteOperation(String statement, Object parameter)
  • Method Details

    • execute

      public void execute(org.apache.ibatis.session.SqlSession sqlSession, Class<? extends Entity> clazz)
    • getStatement

      public String getStatement()
    • setStatement

      public void setStatement(String statement)
    • getParameter

      public Object getParameter()
    • setParameter

      public void setParameter(Object parameter)
    • toString

      public String toString()
      Overrides:
      toString in class Object