Package com.avoka.fc.core.dao
Class JobActionDao
- java.lang.Object
-
- com.avoka.core.dao.BaseDao
-
- com.avoka.fc.core.dao.AbstractDao
-
- com.avoka.fc.core.dao.JobActionDao
-
public class JobActionDao extends AbstractDao
Provides a Collaboration Job Action DAO class.- Since:
- 4.0.0
-
-
Field Summary
-
Fields inherited from class com.avoka.core.dao.BaseDao
FETCH_LIMIT, STATEMENT_MAX_NO_PARAMETERS
-
-
Constructor Summary
Constructors Constructor Description JobActionDao()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JobAction>
getActionsForJobStep(Object jobStepId)
Return the list of actions for the job step with the given ID, sorted by action sequence and then action id.JobAction
getJobActionForID(Object id)
Return the Job Action for the given action primary key, or null if not foundJobAction
getJobActionForKey(String jobActionKey)
Return the Job Action for the specified job action key, or null if not found.-
Methods inherited from class com.avoka.fc.core.dao.AbstractDao
andFilterClientExcludeNull, andFilterClientIncludeNull, andFilterClientOnly, isClientAccessAllowed, performQueryConfigCached
-
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
-
getJobActionForID
public JobAction getJobActionForID(Object id)
Return the Job Action for the given action primary key, or null if not found- Parameters:
id
- the Job Action primary key- Returns:
- the Job Action for the given primary key
-
getJobActionForKey
public JobAction getJobActionForKey(String jobActionKey)
Return the Job Action for the specified job action key, or null if not found.- Parameters:
jobActionKey
- the unique job action key (required)- Returns:
- the Job Action for the specified job action key, or null if not found
-
-