Package de.hybris.platform.b2b.dao
Interface B2BWorflowActionDao
- All Known Implementing Classes:
DefaultB2BWorkflowActionDao
public interface B2BWorflowActionDao
The Interface B2BWorflowActionDao.
- Spring Bean ID:
- b2bWorflowActionDao
-
Method Summary
Modifier and TypeMethodDescriptionfindActionByUserAndStatus(WorkflowActionStatus status, UserModel user) Deprecated, for removal: This API element is subject to removal in a future version.Since 4.4.Deprecated, for removal: This API element is subject to removal in a future version.Since 4.4.Find all the workflow actions for given userfindWorkflowActionsByUserActionCodeAndStatus(WorkflowActionStatus status, String qualifier, UserModel user) Finds a work flow action with a particular workflowaction status, user and template qualifierDeprecated, for removal: This API element is subject to removal in a future version.As of hybris 4.4, replaced byfindWorkflowActionByCode(String)
-
Method Details
-
getWorkflowActionByCode
Deprecated, for removal: This API element is subject to removal in a future version.As of hybris 4.4, replaced byfindWorkflowActionByCode(String) -
findWorkflowActionByCode
Deprecated, for removal: This API element is subject to removal in a future version.Get the WorkFlowAction from its code.- Parameters:
code- the code of the WorkFlowAction- Returns:
- WorkflowActionModel
-
findActionByUserAndStatus
@Deprecated(since="4.4", forRemoval=true) Collection<WorkflowActionModel> findActionByUserAndStatus(WorkflowActionStatus status, UserModel user) Deprecated, for removal: This API element is subject to removal in a future version.Finds a work flow action with a particular workflowaction status by user.- Parameters:
status- the status of the workflowuser- the user- Returns:
- WorkflowActionModel
-
findWorkflowActionsByUserActionCodeAndStatus
Collection<WorkflowActionModel> findWorkflowActionsByUserActionCodeAndStatus(WorkflowActionStatus status, String qualifier, UserModel user) Finds a work flow action with a particular workflowaction status, user and template qualifier -
findWorkflowActionsByUser
Find all the workflow actions for given user
-