Class DefaultWorkflowLinksTemplateDao
- java.lang.Object
-
- de.hybris.platform.workflow.daos.impl.DefaultWorkflowLinksTemplateDao
-
- All Implemented Interfaces:
WorkflowLinksTemplateDao
public class DefaultWorkflowLinksTemplateDao extends java.lang.Object implements WorkflowLinksTemplateDao
Finds a link within aWorkflowActionTemplateModel._WORKFLOWACTIONTEMPLATELINKTEMPLATERELATIONfor a givenAbstractWorkflowDecisionModeland|orAbstractWorkflowActionModel.
-
-
Constructor Summary
Constructors Constructor Description DefaultWorkflowLinksTemplateDao()
-
Method Summary
All Methods Instance Methods Concrete 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 templatevoidsetFlexibleSearchService(FlexibleSearchService flexibleSearchService)
-
-
-
Method Detail
-
findWorkflowActionLinkRelationBySource
public java.util.List<LinkModel> findWorkflowActionLinkRelationBySource(java.lang.String source)
Description copied from interface:WorkflowLinksTemplateDaoSearches for links by given source given decision template and|or action template- Specified by:
findWorkflowActionLinkRelationBySourcein interfaceWorkflowLinksTemplateDao- Parameters:
source- for link- Returns:
- links that match source
-
findLinksByDecisionAndAction
public java.util.Collection<LinkModel> findLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action)
Description copied from interface:WorkflowLinksTemplateDaoSearches for links by a given decision and action- Specified by:
findLinksByDecisionAndActionin interfaceWorkflowLinksTemplateDao- Parameters:
decision- to search foraction- to search for- Returns:
- links that match criteria
-
setFlexibleSearchService
public void setFlexibleSearchService(FlexibleSearchService flexibleSearchService)
- Parameters:
flexibleSearchService- the flexibleSearchService to set
-
-