Package lumis.portal.progress
Class ProgressDaoJdbc
- java.lang.Object
-
- lumis.portal.progress.ProgressDaoJdbc
-
- All Implemented Interfaces:
IProgressDao
public class ProgressDaoJdbc extends Object implements IProgressDao
Dao JDBC implementation for Process objects- Since:
- 4.0.7
- Version:
- $Revision: 16824 $ $Date: 2015-01-23 18:49:12 -0200 (Fri, 23 Jan 2015) $
-
-
Constructor Summary
Constructors Constructor Description ProgressDaoJdbc()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(ProgressConfig progressConfig)
void
addOrUpdateStep(ProgressConfig progressConfig)
void
deleteByProcessId(String processId)
void
deleteExpired(Timestamp expirationDateTime)
boolean
getAbortedByProcessId(String processId)
Collection<ProgressConfig>
getByProcessId(String processId, Timestamp startDateTime)
-
-
-
Method Detail
-
add
public void add(ProgressConfig progressConfig) throws DaoException, PortalException
- Specified by:
add
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
addOrUpdateStep
public void addOrUpdateStep(ProgressConfig progressConfig) throws DaoException, PortalException
- Specified by:
addOrUpdateStep
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
deleteByProcessId
public void deleteByProcessId(String processId) throws DaoException, PortalException
- Specified by:
deleteByProcessId
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
getByProcessId
public Collection<ProgressConfig> getByProcessId(String processId, Timestamp startDateTime) throws DaoException, PortalException
- Specified by:
getByProcessId
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
getAbortedByProcessId
public boolean getAbortedByProcessId(String processId) throws DaoException, PortalException
- Specified by:
getAbortedByProcessId
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
deleteExpired
public void deleteExpired(Timestamp expirationDateTime) throws DaoException, PortalException
- Specified by:
deleteExpired
in interfaceIProgressDao
- Throws:
DaoException
PortalException
-
-