public interface ProcessInstanceStoreDAO
| Modifier and Type | Method and Description |
|---|---|
ProcessInstanceStore |
load(String processInstanceId)
Returns a
ProcessInstanceStore, defined by
processInstanceID from the database, or null if the
object could not be found. |
void |
remove(String processInstanceId)
Deletes the
ProcessInstance corresponding with the
processInstanceId. |
void |
saveOrUpdate(ProcessInstanceStore pIStore)
Stores a
ProcessInstance defined by pIStore in the
database. |
void saveOrUpdate(ProcessInstanceStore pIStore) throws at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException
ProcessInstance defined by pIStore in the
database.pIStore - the ProcessInstanceStore to persist.at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException - is thrown if a problem occurs while accessing the database.ProcessInstanceStore load(String processInstanceId) throws at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException
ProcessInstanceStore, defined by
processInstanceID from the database, or null if the
object could not be found.processInstanceId - the id of the ProcessInstanceStore to retrieve.null.at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException - is thrown if a problem occurs while accessing the database.void remove(String processInstanceId) throws at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException
ProcessInstance corresponding with the
processInstanceId.processInstanceId - the id of the ProcessInstance to be deleted.at.gv.egovernment.moa.id.commons.db.ex.MOADatabaseException - is thrown if a problem occurs while accessing the database.Copyright © 2017. All rights reserved.