Package de.hybris.platform.workflow.daos
Interface WorkflowLinksTemplateDao
-
- All Known Implementing Classes:
DefaultWorkflowLinksTemplateDao
public interface WorkflowLinksTemplateDaoDao to find links between workflow templates and action templates for the given criteria.- Since:
- 4.4
- Spring Bean ID:
- workflowLinksTemplateDao
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Collection<LinkModel>findLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action)Searches for links by a given decision and actionjava.util.List<LinkModel>findWorkflowActionLinkRelationBySource(java.lang.String source)Searches for links by given source given decision template and|or action template
-
-
-
Method Detail
-
findWorkflowActionLinkRelationBySource
java.util.List<LinkModel> findWorkflowActionLinkRelationBySource(java.lang.String source)
Searches for links by given source given decision template and|or action template- Parameters:
source- for link- Returns:
- links that match source
-
findLinksByDecisionAndAction
java.util.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
-
-