Package de.hybris.platform.workflow.daos
Interface WorkflowLinksDao
- All Known Implementing Classes:
DefaultWorkflowLinksDao
public interface WorkflowLinksDao
Dao to find links between workflows and actions for the given criteria.
-
Method Summary
Modifier and TypeMethodDescriptionfindLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action) Searches for links by a given decision and actionSearches for links by given source
-
Method Details
-
findWorkflowActionLinkRelationBySource
Searches for links by given source- Parameters:
source- for link- Returns:
- links that match source
-
findLinksByDecisionAndAction
Collection<LinkModel> findLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action) Searches for links by a given decision and action- Parameters:
decision- to search foraction- to search for- Returns:
- links that match criteria
-