Package com.avoka.fc.core.dao
Class WorkspaceDao
- java.lang.Object
-
- com.avoka.core.dao.BaseDao
-
- com.avoka.fc.core.dao.WorkspaceDao
-
public class WorkspaceDao extends BaseDao
Provides Work Space DAO operations.- Since:
- 4.3.4
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
WorkspaceDao.JobCriteria
Job search criteria.static class
WorkspaceDao.SubmissionCriteria
Submission search criteria.
-
Field Summary
-
Fields inherited from class com.avoka.core.dao.BaseDao
FETCH_LIMIT, STATEMENT_MAX_NO_PARAMETERS
-
-
Constructor Summary
Constructors Constructor Description WorkspaceDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Job>
getJobList(WorkspaceDao.JobCriteria criteria)
Return job list for the given search criteria.List<Submission>
getSubmissionList(WorkspaceDao.SubmissionCriteria criteria)
Return submission list for the given search criteria.-
Methods inherited from class com.avoka.core.dao.BaseDao
addOrdering, addOrderingCaseInsensitive, addOrderingCaseSensitive, andQueryBetween, andQueryInExp, andQueryInExp, andQueryLikeIgnoreCaseExp, andQueryMatchDbExp, andQueryMatchExp, andQueryMatchIsNotNull, andQueryMatchIsNull, andQueryNoMatchExp, andQueryNotTrue, deleteObject, deleteObjects, findObject, getDataContext, getFetchLimit, getLogger, getObjectForPK, newObject, orQueryLikeIgnoreCaseExp, orQueryMatchExp, performNamedQuery, performNamedQuery, performNamedQuery, performNamedQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performNonSelectingQuery, performQuery, performQuery, performQuery, registerNewObject, setCacheStrategy, setFetchLimit, setLocalCacheStrategy, setLocalCacheStrategy, setSharedCacheStrategy, toMap, toMap
-
-
-
-
Method Detail
-
getJobList
public List<Job> getJobList(WorkspaceDao.JobCriteria criteria)
Return job list for the given search criteria.- Parameters:
criteria
- the search criteria- Returns:
- the job list for the given search criteria.
-
getSubmissionList
public List<Submission> getSubmissionList(WorkspaceDao.SubmissionCriteria criteria)
Return submission list for the given search criteria.- Parameters:
criteria
- the search criteria- Returns:
- the submission list for the given search criteria.
-
-