Package de.hybris.platform.workflow.daos
Interface WorkflowLinksTemplateDao
- All Known Implementing Classes:
DefaultWorkflowLinksTemplateDao
public interface WorkflowLinksTemplateDao
Dao to find links between workflow templates and action templates for the given criteria.
- Since:
- 4.4
- Spring Bean ID:
- workflowLinksTemplateDao
-
Method Summary
Modifier and TypeMethodDescriptionfindLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action) Searches for links by a given decision and actionSearches for links by given source given decision template and|or action template
-
Method Details
-
findWorkflowActionLinkRelationBySource
Searches for links by given source given decision template and|or action template- 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
-