Package de.hybris.platform.workflow
Interface WorkflowActionCommentService
-
- All Known Implementing Classes:
DefaultWorkflowActionCommentService
public interface WorkflowActionCommentServiceService to manipulate comments for workflow actions
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowActionCommentModeladdCommentToAction(java.lang.String commentValue, WorkflowActionModel action)Adds comment to actionbooleanisAutomatedComment(WorkflowActionCommentModel comment)Returns true if comment is automated
-
-
-
Method Detail
-
addCommentToAction
WorkflowActionCommentModel addCommentToAction(java.lang.String commentValue, WorkflowActionModel action)
Adds comment to action- Parameters:
commentValue- comment to addaction- action to which comment is added- Returns:
- created comment
-
isAutomatedComment
boolean isAutomatedComment(WorkflowActionCommentModel comment)
Returns true if comment is automated- Parameters:
comment- commment to test- Returns:
- true if comment is automated, false otherwise
-
-