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
-
-
Constructor Summary
Constructors Constructor Description BulkDeleteOperation(String statement, Object parameter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidexecute(org.apache.ibatis.session.SqlSession sqlSession, Class<? extends Entity> clazz)ObjectgetParameter()StringgetStatement()voidsetParameter(Object parameter)voidsetStatement(String statement)StringtoString()
-
-
-
Method Detail
-
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)
-
-