Class DefaultWorkflowLinksDao
- java.lang.Object
-
- de.hybris.platform.workflow.daos.impl.DefaultWorkflowLinksDao
-
- All Implemented Interfaces:
WorkflowLinksDao
public class DefaultWorkflowLinksDao extends java.lang.Object implements WorkflowLinksDao
/** Finds a link within aWorkflowActionModel._WORKFLOWACTIONLINKRELATIONfor a givenAbstractWorkflowDecisionModeland|orAbstractWorkflowActionModel.
-
-
Constructor Summary
Constructors Constructor Description DefaultWorkflowLinksDao()
-
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 sourcevoidsetFlexibleSearchService(FlexibleSearchService flexibleSearchService)
-
-
-
Method Detail
-
findWorkflowActionLinkRelationBySource
public java.util.List<LinkModel> findWorkflowActionLinkRelationBySource(java.lang.String source)
Description copied from interface:WorkflowLinksDaoSearches for links by given source- Specified by:
findWorkflowActionLinkRelationBySourcein interfaceWorkflowLinksDao- Parameters:
source- for link- Returns:
- links that match source
-
findLinksByDecisionAndAction
public java.util.Collection<LinkModel> findLinksByDecisionAndAction(AbstractWorkflowDecisionModel decision, AbstractWorkflowActionModel action)
Description copied from interface:WorkflowLinksDaoSearches for links by a given decision and action- Specified by:
findLinksByDecisionAndActionin interfaceWorkflowLinksDao- 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
-
-