Class DbBulkOperation
- java.lang.Object
-
- org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation
-
- org.camunda.bpm.engine.impl.db.entitymanager.operation.DbBulkOperation
-
- All Implemented Interfaces:
Recyclable
public class DbBulkOperation extends DbOperation
A bulk operation- Author:
- Daniel Meyer
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation
DbOperation.State
-
-
Field Summary
Fields Modifier and Type Field Description protected Object
parameter
protected String
statement
-
Fields inherited from class org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation
entityType, failure, operationType, rowsAffected, state
-
-
Constructor Summary
Constructors Constructor Description DbBulkOperation()
DbBulkOperation(DbOperationType operationType, Class<? extends DbEntity> entityType, String statement, Object parameter)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
Object
getParameter()
String
getStatement()
int
hashCode()
void
recycle()
void
setParameter(Object parameter)
void
setStatement(String statement)
String
toString()
-
Methods inherited from class org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation
getEntityType, getFailure, getOperationType, getRowsAffected, getState, isFailed, setEntityType, setFailure, setOperationType, setRowsAffected, setState
-
-
-
-
Constructor Detail
-
DbBulkOperation
public DbBulkOperation()
-
DbBulkOperation
public DbBulkOperation(DbOperationType operationType, Class<? extends DbEntity> entityType, String statement, Object parameter)
-
-
Method Detail
-
recycle
public void recycle()
- Specified by:
recycle
in interfaceRecyclable
- Overrides:
recycle
in classDbOperation
-
getParameter
public Object getParameter()
-
setParameter
public void setParameter(Object parameter)
-
getStatement
public String getStatement()
-
setStatement
public void setStatement(String statement)
-
-