Package lumis.portal.progress
Interface IProgressDao
-
- All Known Implementing Classes:
ProgressDaoJdbc
public interface IProgressDao
Dao class for Progress objects- Since:
- 4.0.7
- Version:
- $Revision: 4942 $ $Date: 2006-11-03 09:10:15 -0300 (Fri, 03 Nov 2006) $
-
-
Method Summary
All Methods Instance Methods Abstract 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
void add(ProgressConfig progressConfig) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
getByProcessId
Collection<ProgressConfig> getByProcessId(String processId, Timestamp startDateTime) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
deleteByProcessId
void deleteByProcessId(String processId) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
deleteExpired
void deleteExpired(Timestamp expirationDateTime) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
addOrUpdateStep
void addOrUpdateStep(ProgressConfig progressConfig) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
getAbortedByProcessId
boolean getAbortedByProcessId(String processId) throws DaoException, PortalException
- Throws:
DaoException
PortalException
-
-