| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowIntegrationTest.approveWorkflowAction(WorkflowActionModel workflowActionModel)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
B2BWorflowActionDao.findWorkflowActionByCode(String code)
|
WorkflowActionModel |
B2BWorflowActionDao.getWorkflowActionByCode(String code)
Deprecated.
As of hybris 4.4, replaced by
B2BWorflowActionDao.findWorkflowActionByCode(String) |
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
B2BWorflowActionDao.findActionByUserAndStatus(WorkflowActionStatus status,
UserModel user)
|
Collection<WorkflowActionModel> |
B2BWorflowActionDao.findWorkflowActionsByUser(UserModel user)
Find all the workflow actions for given user
|
Collection<WorkflowActionModel> |
B2BWorflowActionDao.findWorkflowActionsByUserActionCodeAndStatus(WorkflowActionStatus status,
String qualifier,
UserModel user)
Finds a work flow action with a particular workflowaction status, user and template qualifier
|
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
DefaultB2BWorkflowActionDao.findWorkflowActionByCode(String code) |
WorkflowActionModel |
DefaultB2BWorkflowActionDao.getWorkflowActionByCode(String code)
Deprecated.
As of hybris 4.4, replaced by
DefaultB2BWorkflowActionDao.findWorkflowActionByCode(String) |
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
DefaultB2BWorkflowActionDao.findActionByUserAndStatus(WorkflowActionStatus status,
UserModel user)
Deprecated.
|
Collection<WorkflowActionModel> |
DefaultB2BWorkflowActionDao.findWorkflowActionsByUser(UserModel user) |
Collection<WorkflowActionModel> |
DefaultB2BWorkflowActionDao.findWorkflowActionsByUserActionCodeAndStatus(WorkflowActionStatus status,
String qualifier,
UserModel user) |
| Modifier and Type | Method and Description |
|---|---|
protected List<WorkflowActionModel> |
B2BWorkflowMigrationFor4_4Release.findWorkflowActionsToMigrate() |
| Modifier and Type | Method and Description |
|---|---|
WorkflowDecisionModel |
B2BAbstractWorkflowAutomatedAction.perform(WorkflowActionModel action) |
abstract void |
B2BAbstractWorkflowAutomatedAction.performAction(WorkflowActionModel action) |
void |
RejectDecisionAutomatedAction.performAction(WorkflowActionModel action) |
void |
AfterRejectOrderWorkflowDecisionAction.performAction(WorkflowActionModel action) |
void |
B2BAfterWorkflowAction.performAction(WorkflowActionModel action) |
void |
AfterApproveOrderWorkflowDecisionAction.performAction(WorkflowActionModel action) |
void |
ApproveDecisionAutomatedAction.performAction(WorkflowActionModel action) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
B2BWorkflowIntegrationService.getActionByCode(String code)
Deprecated.
As of hybris 4.4, replaced by
B2BWorkflowIntegrationService.getActionForCode(String) |
WorkflowActionModel |
B2BWorkflowIntegrationService.getActionForCode(String code)
Get WorkflowAction for its code.
|
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
B2BWorkflowIntegrationService.findByActionStatusAndUser(WorkflowActionStatus status,
String qualifier,
UserModel user)
Deprecated.
As of hybris 4.4, replaced by
B2BWorkflowIntegrationService.getWorkflowActionsForActionStatusAndUser(WorkflowActionStatus, String, UserModel) |
Collection<WorkflowActionModel> |
B2BWorkflowIntegrationService.getStartWorkflowActions(WorkflowModel workflow)
Gets all WorkFlowActions that are of
WorkflowActionType.START type. |
Collection<WorkflowActionModel> |
B2BWorkflowIntegrationService.getWorkflowActionsForActionStatusAndUser(WorkflowActionStatus status,
String qualifier,
UserModel user)
Gets all WorkflowActions by user, workflowActionStatus (eg IN_PROGRESS) and qualifier (eg APPROVAL)
|
Collection<WorkflowActionModel> |
B2BWorkflowIntegrationService.getWorkflowActionsForUser(UserModel user)
Gets a collection of workflow actions for a user
|
| Modifier and Type | Method and Description |
|---|---|
void |
B2BWorkflowIntegrationService.approveWorkflowAction(WorkflowActionModel workflowActionModel)
Deprecated.
Use
B2BWorkflowIntegrationService.decideAction(de.hybris.platform.workflow.model.WorkflowActionModel, String)
decideAction(action, DECISIONCODES.APPROVE.name()) |
void |
B2BWorkflowIntegrationService.decideAction(WorkflowActionModel workflowActionModel,
String decisionQualifier)
Makes a decision on an action based on the qualifier (The qualifier is used to look up a decision with its code
build from
AbstractWorkflowActionModel.CODE_decisionQualifier) |
OrderModel |
B2BWorkflowIntegrationService.getOrderFromAction(WorkflowActionModel workflowActionModel)
Gets the associated order to the WorkflowActionModel qualifier.
|
void |
B2BWorkflowIntegrationService.rejectWorkflowAction(WorkflowActionModel workflowActionModel)
Deprecated.
Use
B2BWorkflowIntegrationService.decideAction(de.hybris.platform.workflow.model.WorkflowActionModel, String)
decideAction(action, DECISIONCODES.REJECT.name()) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
DefaultB2BWorkflowIntegrationService.getActionByCode(String code)
Deprecated.
As of hybris 4.4, replaced by
DefaultB2BWorkflowIntegrationService.getActionForCode(String) |
WorkflowActionModel |
DefaultB2BWorkflowIntegrationService.getActionForCode(String code)
Deprecated.
|
protected WorkflowActionModel |
DefaultB2BWorkflowIntegrationService.getWorkAction(WorkflowActionTemplateModel templateAction,
Collection<WorkflowActionModel> workflowActions)
Deprecated.
Unused, will be removed in the next release
|
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
DefaultB2BWorkflowIntegrationService.findByActionStatusAndUser(WorkflowActionStatus status,
String qualifier,
UserModel user)
Deprecated.
As of hybris 4.4, replaced by
DefaultB2BWorkflowIntegrationService.getWorkflowActionsForActionStatusAndUser(WorkflowActionStatus, String, UserModel) |
Collection<WorkflowActionModel> |
DefaultB2BWorkflowIntegrationService.getStartWorkflowActions(WorkflowModel workflow) |
Collection<WorkflowActionModel> |
DefaultB2BWorkflowIntegrationService.getWorkflowActionsForActionStatusAndUser(WorkflowActionStatus status,
String qualifier,
UserModel user)
Gets all WorkflowActions by user, workflowActionStatus (eg IN_PROGRESS) and qualifier (eg APPROVAL)
|
Collection<WorkflowActionModel> |
DefaultB2BWorkflowIntegrationService.getWorkflowActionsForUser(UserModel user) |
| Modifier and Type | Method and Description |
|---|---|
void |
B2BQuoteOrderApprovalProcessTest.approveQuoteWorkflowAction(WorkflowActionModel workflowActionModel,
OrderModel order) |
void |
B2BQuoteOrderApprovalProcessTest.approveWorkflowAction(WorkflowActionModel workflowActionModel) |
void |
DefaultB2BWorkflowIntegrationService.approveWorkflowAction(WorkflowActionModel workflowActionModel)
Deprecated.
Use
DefaultB2BWorkflowIntegrationService.decideAction(de.hybris.platform.workflow.model.WorkflowActionModel, String)
decideAction(action, DECISIONCODES.APPROVE.name()) |
void |
DefaultB2BWorkflowIntegrationService.decideAction(WorkflowActionModel workflowActionModel,
String decisionQualifier)
Makes a decision on an action based on the qualifier (The qualifier is used to look up a decision with its code
build from
AbstractWorkflowActionModel.CODE_decisionQualifier) |
protected void |
DefaultB2BWorkflowIntegrationService.decideAction(WorkflowActionModel workflowActionModel,
WorkflowDecisionModel workflowDecisionModel) |
OrderModel |
DefaultB2BWorkflowIntegrationService.getOrderFromAction(WorkflowActionModel workflowActionModel) |
void |
DefaultB2BWorkflowIntegrationService.rejectWorkflowAction(WorkflowActionModel workflowActionModel)
Deprecated.
Use
DefaultB2BWorkflowIntegrationService.decideAction(de.hybris.platform.workflow.model.WorkflowActionModel, String)
decideAction(action, DECISIONCODES.REJECT.name()) |
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowActionModel |
DefaultB2BWorkflowIntegrationService.getWorkAction(WorkflowActionTemplateModel templateAction,
Collection<WorkflowActionModel> workflowActions)
Deprecated.
Unused, will be removed in the next release
|
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowFacade.getStartWorkflowActions(WorkflowModel adhocWorkflowModel) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
TaskCellRenderer.doDecideAction(WorkflowActionModel action,
WorkflowDecisionModel decision,
TableModel model,
Component parent) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowService.getEndWorkflowActions(WorkflowModel wfModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowService.getNormalWorkflowActions(WorkflowModel wfModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowService.getStartWorkflowActions(WorkflowModel workflowModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowService.getWorkflowActionsByType(EnumerationValue type,
WorkflowModel wfModel)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowServiceImpl.getEndWorkflowActions(WorkflowModel wfModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowServiceImpl.getNormalWorkflowActions(WorkflowModel wfModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowServiceImpl.getStartWorkflowActions(WorkflowModel wfModel)
Deprecated.
|
List<WorkflowActionModel> |
WorkflowServiceImpl.getWorkflowActionsByType(EnumerationValue type,
WorkflowModel wfModel)
Deprecated.
|
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
InboxViewModel.getAction()
Generated method - Getter of the
InboxView.action attribute defined at extension workflow. |
| Modifier and Type | Method and Description |
|---|---|
protected Button |
WorkflowDecisionActionSectionRenderer.createActionButton(Combobox combobox,
WorkflowActionModel workflowActionModel,
WidgetInstanceManager widgetInstanceManager) |
protected EventListener |
WorkflowDecisionActionSectionRenderer.createSelectedDecisionListener(WidgetInstanceManager widgetInstanceManager,
WorkflowActionModel actionModel,
Component parent,
DataType dataType) |
protected Combobox |
WorkflowDecisionActionSectionRenderer.createSlectedDecisionCombobox(WidgetInstanceManager widgetInstanceManager,
WorkflowActionModel action,
Component component,
DataType dataType) |
protected void |
WorkflowDecisionActionSectionRenderer.performAction(WorkflowActionModel workflowActionModel,
WorkflowDecisionModel selectedDecision)
Deprecated.
since 6.3
|
protected void |
WorkflowDecisionActionSectionRenderer.performAction(WorkflowActionModel workflowActionModel,
WorkflowDecisionModel selectedDecision,
WidgetInstanceManager wim) |
protected void |
WorkflowDecisionActionSectionRenderer.refreshAfterCancel(WidgetInstanceManager widgetInstanceManager,
WorkflowActionModel actionModel,
Component parent,
DataType dataType) |
protected void |
WorkflowDecisionActionSectionRenderer.refreshAfterSave(WidgetInstanceManager widgetInstanceManager,
WorkflowActionModel actionModel) |
protected void |
WorkflowDecisionActionSectionRenderer.refreshWidgetModelAfterSaveListeners(WorkflowActionModel actionModel,
WidgetInstanceManager widgetInstanceManager) |
protected void |
WorkflowDecisionActionSectionRenderer.renderSectionInternal(WidgetInstanceManager widgetInstanceManager,
WorkflowActionModel action,
Component parent,
DataType dataType) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
PrintCollaborationFacade.getCurrentAction(AbstractCommentModel comment)
This method should find the current
status of the given AbstractCommentModel. |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
DefaultPrintCollaborationFacade.getCurrentAction(AbstractCommentModel comment) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
PrintJobService.getCurrentActions(WorkflowModel workflow)
This method should be used to get the current active
WorkflowActionModels of the given
WorkflowModel. |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
DefaultPrintJobService.getCurrentActions(WorkflowModel workflow) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
PrintJobHistoryEntryModel.getToActions()
Generated method - Getter of the
PrintJobHistoryEntry.toActions attribute defined at extension print. |
| Modifier and Type | Method and Description |
|---|---|
void |
PrintJobHistoryEntryModel.setToActions(List<WorkflowActionModel> value)
Generated method - Setter of
PrintJobHistoryEntry.toActions attribute defined at extension print. |
| Constructor and Description |
|---|
PrintJobHistoryEntryModel(UserModel _causedBy,
String _comment,
ItemModel _owner,
List<WorkflowActionModel> _toActions,
AbstractWorkflowActionModel _workflowAction)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
PrintJobHistoryEntryModel(UserModel _causedBy,
String _comment,
List<WorkflowActionModel> _toActions,
AbstractWorkflowActionModel _workflowAction)
Deprecated.
Since 4.1.1 Please use the default constructor without parameters
|
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowDecisionModel |
AbstractPrintServicelayerTest.getDecision(String code,
WorkflowActionModel action)
Gets the decision with given code from test workflow instance.
|
| Modifier and Type | Method and Description |
|---|---|
void |
PrintDecideActionStrategy.doAfterActivationOfAndLink(WorkflowActionModel action) |
void |
PrintDecideActionStrategy.doAfterActivationOfOrLink(WorkflowActionModel action) |
void |
PrintDecideActionStrategy.doAfterDecisionMade(WorkflowActionModel action,
WorkflowDecisionModel selDec) |
protected void |
PrintDecideActionStrategy.writeAutomatedJobComment(WorkflowActionModel action,
String message,
List<WorkflowActionModel> toActions,
UserModel causedBy) |
| Modifier and Type | Method and Description |
|---|---|
protected void |
PrintDecideActionStrategy.writeAutomatedJobComment(WorkflowActionModel action,
String message,
List<WorkflowActionModel> toActions,
UserModel causedBy) |
| Modifier and Type | Method and Description |
|---|---|
void |
PrintWorkflowDecisionHelper.doDecideAction(WorkflowActionModel action,
WorkflowDecisionModel decision) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
WorkflowActionService.complete(WorkflowActionModel action)
Completes action
|
WorkflowActionModel |
WorkflowActionService.createWorkflowAction(WorkflowActionTemplateModel template,
WorkflowModel workflow)
Creates workflow action based on template and attach it to workflow
|
WorkflowActionModel |
WorkflowActionService.disable(WorkflowActionModel action)
Disable action
|
WorkflowActionModel |
WorkflowActionService.getActionForCode(WorkflowModel workflow,
String code) |
WorkflowActionModel |
WorkflowActionService.idle(WorkflowActionModel action)
Idles action
|
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowActionService.getAllUserWorkflowActionsWithAttachment(ComposedTypeModel attachmentType)
Returns workflow actions with attachment that match type passed as a parameter
|
List<WorkflowActionModel> |
WorkflowActionService.getAllUserWorkflowActionsWithAttachment(String attachmentTypeCodeOrClassName)
Returns workflow actions with attachment that match type or code passed as a parameter
|
List<WorkflowActionModel> |
WorkflowActionService.getAllUserWorkflowActionsWithAttachments(List<String> attachments)
Returns workflow actions with attachment that match types passed
|
List<WorkflowActionModel> |
WorkflowActionService.getAllUserWorkflowActionsWithAttachments(List<String> attachments,
Collection<WorkflowActionStatus> actionStatuses)
Returns workflow actions with attachment that match types passed and statuses
|
List<WorkflowActionModel> |
WorkflowActionService.getEndWorkflowActions(WorkflowModel workflow)
Returns ended workflow actions
|
List<WorkflowActionModel> |
WorkflowActionService.getNormalWorkflowActions(WorkflowModel workflow)
Returns normal workflow actions
|
List<WorkflowActionModel> |
WorkflowActionService.getStartWorkflowActions(WorkflowModel workflow)
Returns start workflow actions
|
List<WorkflowActionModel> |
WorkflowActionService.getWorkflowActionsByType(WorkflowActionType type,
WorkflowModel workflow)
Returns workflow actions by type
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
WorkflowProcessingService.activate(WorkflowActionModel action)
Activates an action and saves the activation
|
WorkflowActionCommentModel |
WorkflowActionCommentService.addCommentToAction(String commentValue,
WorkflowActionModel action)
Adds comment to action
|
WorkflowActionModel |
WorkflowActionService.complete(WorkflowActionModel action)
Completes action
|
HtmlEmail |
EmailService.createActivationEmail(WorkflowActionModel action)
Creates activation e-mail for the given
action This is performed right after the activation of the
action. |
void |
WorkflowProcessingService.decideAction(WorkflowActionModel action,
WorkflowDecisionModel decision)
Decides an action and assign a decision
|
WorkflowActionModel |
WorkflowActionService.disable(WorkflowActionModel action)
Disable action
|
List<ItemModel> |
WorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action)
Returns attachments assigned to action or empty list
|
List<ItemModel> |
WorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action,
List<String> attachmentClassNames)
Returns attachments assigned to action that match all class names passed as a paremeter
|
List<ItemModel> |
WorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action,
String attachmentClassName)
Returns attachments assigned to action that match class name or empty list
|
WorkflowActionModel |
WorkflowActionService.idle(WorkflowActionModel action)
Idles action
|
boolean |
WorkflowActionService.isActive(WorkflowActionModel action)
Returns true if action is active
|
boolean |
WorkflowActionService.isCompleted(WorkflowActionModel action)
Returns true if action is completed
|
boolean |
WorkflowActionService.isDisabled(WorkflowActionModel action)
Returns true if action is disabled
|
boolean |
WorkflowActionService.isEndedByWorkflow(WorkflowActionModel action)
Returns true if action is ended by a workdlow
|
boolean |
WorkflowActionService.isUserAssignedPrincipal(WorkflowActionModel action)
Returns true if user is assigned to action
|
void |
WorkflowProcessingService.setAndConnectionBetweenActionAndDecision(WorkflowDecisionModel decision,
WorkflowActionModel workflowAction)
Sets "andconnection" attribute for links.
|
void |
WorkflowProcessingService.setOrConnectionBetweenActionAndDecision(WorkflowDecisionModel decision,
WorkflowActionModel workflowAction)
Sets "orconnection" attribute for links.
|
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowDAO.getEndWorkflowActions(WorkflowModel wfModel)
Deprecated.
as of release 4.3, please use
WorkflowActionDao.findEndWorkflowActions(WorkflowModel) |
List<WorkflowActionModel> |
WorkflowDAO.getNormalWorkflowActions(WorkflowModel wfModel)
Deprecated.
as of release 4.3, please use
WorkflowActionDao.findNormalWorkflowActions(WorkflowModel) |
List<WorkflowActionModel> |
WorkflowDAO.getStartWorkflowActions(WorkflowModel wfModel)
Deprecated.
as of release 4.3, please use
WorkflowActionDao.findStartWorkflowActions(WorkflowModel) |
List<WorkflowActionModel> |
WorkflowDAO.getWorkflowActionsByType(EnumerationValue type,
WorkflowModel wfModel)
Deprecated.
as of release 4.3, please use
WorkflowActionDao.findWorkflowActionsByType(de.hybris.platform.workflow.enums.WorkflowActionType, WorkflowModel) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
DefaultWorkflowDAO.getEndWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowDAO.getNormalWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowDAO.getStartWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowDAO.getWorkflowActionsByType(EnumerationValue type,
WorkflowModel wfModel) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
WorkflowActionDao.findEndWorkflowActions(WorkflowModel workflow) |
List<WorkflowActionModel> |
WorkflowActionDao.findNormalWorkflowActions(WorkflowModel workflow) |
List<WorkflowActionModel> |
WorkflowActionDao.findStartWorkflowActions(WorkflowModel workflow) |
List<WorkflowActionModel> |
WorkflowActionDao.findWorkflowActionsByStatusAndAttachmentType(List<ComposedTypeModel> attachmentTypes,
Collection<WorkflowActionStatus> actionStatuses) |
List<WorkflowActionModel> |
WorkflowActionDao.findWorkflowActionsByType(WorkflowActionType type,
WorkflowModel workflow) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
DefaultWorkflowActionDao.findEndWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowActionDao.findNormalWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowActionDao.findStartWorkflowActions(WorkflowModel wfModel) |
List<WorkflowActionModel> |
DefaultWorkflowActionDao.findWorkflowActionsByStatusAndAttachmentType(List<ComposedTypeModel> attachmentTypes,
Collection<WorkflowActionStatus> actionStatuses) |
List<WorkflowActionModel> |
DefaultWorkflowActionDao.findWorkflowActionsByType(WorkflowActionType type,
WorkflowModel wfModel) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
DefaultWorkflowActionService.complete(WorkflowActionModel action) |
WorkflowActionModel |
DefaultWorkflowActionService.createWorkflowAction(WorkflowActionTemplateModel template,
WorkflowModel workflow) |
WorkflowActionModel |
DefaultWorkflowActionService.disable(WorkflowActionModel action) |
WorkflowActionModel |
DefaultWorkflowActionService.getActionForCode(WorkflowModel workflow,
String code) |
protected WorkflowActionModel |
DefaultWorkflowService.getWorkAction(WorkflowActionTemplateModel templateAction,
List<WorkflowActionModel> workflowActions) |
WorkflowActionModel |
DefaultWorkflowActionService.idle(WorkflowActionModel action) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
DefaultWorkflowProcessingService.activate(WorkflowActionModel action)
Activates an action and saves the activation
|
WorkflowActionCommentModel |
DefaultWorkflowActionCommentService.addCommentToAction(String commentValue,
WorkflowActionModel action) |
protected void |
DefaultWorkflowProcessingService.checkIncomingLinks(WorkflowActionModel action) |
WorkflowActionModel |
DefaultWorkflowActionService.complete(WorkflowActionModel action) |
HtmlEmail |
DefaultEmailService.createActivationEmail(WorkflowActionModel action) |
protected void |
DefaultWorkflowProcessingService.decide(WorkflowActionModel action) |
void |
DefaultWorkflowProcessingService.decideAction(WorkflowActionModel action,
WorkflowDecisionModel decision)
Decides an action and assign a decision
|
WorkflowActionModel |
DefaultWorkflowActionService.disable(WorkflowActionModel action) |
List<ItemModel> |
DefaultWorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action) |
List<ItemModel> |
DefaultWorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action,
List<String> attachmentClassNames) |
List<ItemModel> |
DefaultWorkflowAttachmentService.getAttachmentsForAction(WorkflowActionModel action,
String attachmentClassName) |
WorkflowActionModel |
DefaultWorkflowActionService.idle(WorkflowActionModel action) |
boolean |
DefaultWorkflowActionService.isActive(WorkflowActionModel action) |
boolean |
DefaultWorkflowActionService.isCompleted(WorkflowActionModel action) |
boolean |
DefaultWorkflowActionService.isDisabled(WorkflowActionModel action) |
boolean |
DefaultWorkflowActionService.isEndedByWorkflow(WorkflowActionModel action) |
boolean |
DefaultWorkflowActionService.isUserAssignedPrincipal(WorkflowActionModel action) |
protected boolean |
DefaultWorkflowProcessingService.predecessorsCompleted(WorkflowActionModel action) |
void |
DefaultWorkflowProcessingService.setAndConnectionBetweenActionAndDecision(WorkflowDecisionModel decision,
WorkflowActionModel workflowAction) |
void |
DefaultWorkflowProcessingService.setOrConnectionBetweenActionAndDecision(WorkflowDecisionModel decision,
WorkflowActionModel workflowAction) |
void |
DefaultWorkflowService.writeAutomatedComment(WorkflowActionModel action,
String message,
String... messageParams) |
protected void |
DefaultWorkflowProcessingService.writeAutomatedComment(WorkflowActionModel action,
String message,
String... messageParams) |
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowActionModel |
DefaultWorkflowService.getWorkAction(WorkflowActionTemplateModel templateAction,
List<WorkflowActionModel> workflowActions) |
void |
DefaultWorkflowService.setActionsWorkflowTemplateFactory(WorkflowFactory<WorkflowModel,WorkflowTemplateModel,List<WorkflowActionModel>> actionsFromWorkflowTemplate) |
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowActionModel |
WorkflowTest.getAction(String code)
Gets the action with given code from test workflow instance.
|
protected WorkflowActionModel |
WorkflowCompatibleTest.getAction(String code)
Gets the action with given code from test workflow instance.
|
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowDecisionModel |
WorkflowTest.getDecision(String code,
WorkflowActionModel action)
Gets the decision with given code from test workflow instance.
|
WorkflowDecisionModel |
WorkflowAutomatedAction.perform(WorkflowActionModel action) |
WorkflowDecisionModel |
WorkflowAutomatedTest.WorkflowAutomatedTestAction.perform(WorkflowActionModel action) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowDecisionModel |
WorkflowAutomatedAction.perform(WorkflowActionModel action) |
WorkflowDecisionModel |
AutomatedWorkflowTemplateJob.perform(WorkflowActionModel action)
execution method for the automated workflow job
|
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
WorkflowDecisionModel.getAction()
Generated method - Getter of the
WorkflowDecision.action attribute defined at extension workflow. |
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
WorkflowItemAttachmentModel.getActions()
Generated method - Getter of the
WorkflowItemAttachment.actions attribute defined at extension workflow. |
List<WorkflowActionModel> |
WorkflowModel.getActions()
Generated method - Getter of the
Workflow.actions attribute defined at extension workflow. |
Collection<WorkflowActionModel> |
WorkflowDecisionModel.getToActions()
Generated method - Getter of the
WorkflowDecision.toActions attribute defined at extension workflow. |
| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowDecisionModel.setAction(WorkflowActionModel value)
Generated method - Setter of
WorkflowDecision.action attribute defined at extension workflow. |
| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowItemAttachmentModel.setActions(Collection<WorkflowActionModel> value)
Generated method - Setter of
WorkflowItemAttachment.actions attribute defined at extension workflow. |
void |
WorkflowModel.setActions(List<WorkflowActionModel> value)
Generated method - Setter of
Workflow.actions attribute defined at extension workflow. |
void |
WorkflowDecisionModel.setToActions(Collection<WorkflowActionModel> value)
Generated method - Setter of
WorkflowDecision.toActions attribute defined at extension workflow. |
| Modifier and Type | Method and Description |
|---|---|
WorkflowActionModel |
WorkflowActionResource.getWorkflowActionModel()
Convenience method which just delegates to
#getResourceValue() |
protected WorkflowActionModel |
WorkflowActionResource.readResource(String resourceId)
Gets the
WorkflowActionModel resource which is addressed by current resource request. |
| Modifier and Type | Method and Description |
|---|---|
Collection<WorkflowActionModel> |
WorkflowActionsResource.getWorkflowActionsCollection()
Convenience method which just delegates to
#getResourceValue() |
| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowActionResource.setWorkflowActionModel(WorkflowActionModel value)
Convenience method which just delegates to
#setResourceValue(WorkflowActionModel) |
| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowActionsResource.setWorkflowActionsCollection(Collection<WorkflowActionModel> value)
Convenience method which just delegates to
#setResourceValue(Collection) |
| Modifier and Type | Method and Description |
|---|---|
void |
WorkflowServiceImpl.addComment(Object comment,
WorkflowActionModel action)
Deprecated.
|
void |
WorkflowServiceImpl.decideAction(WorkflowActionModel action,
WorkflowDecisionModel decision)
Deprecated.
|
List<ItemModel> |
WorkflowServiceImpl.getAttachmentsForAction(WorkflowActionModel action)
Deprecated.
|
List<ItemModel> |
WorkflowServiceImpl.getAttachmentsForAction(WorkflowActionModel action,
List<String> attachmentClassNames)
Deprecated.
|
List<ItemModel> |
WorkflowServiceImpl.getAttachmentsForAction(WorkflowActionModel action,
String attachmentClassName)
Deprecated.
|
List<WorkflowActionCommentModel> |
WorkflowServiceImpl.getCommentsForAction(WorkflowActionModel action)
Deprecated.
|
List<WorkflowDecisionModel> |
WorkflowServiceImpl.getDecisionsForAction(WorkflowActionModel action)
Deprecated.
as of release 4.3, please use
getDecisions() |
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowActionModel |
AbstractWorkflowFactory.getWorkAction(WorkflowActionTemplateModel templateAction,
List<WorkflowActionModel> workflowActions) |
| Modifier and Type | Method and Description |
|---|---|
List<WorkflowActionModel> |
ActionsFromWorkflowTemplateFactory.create(WorkflowModel target,
WorkflowTemplateModel template) |
| Modifier and Type | Method and Description |
|---|---|
WorkflowDecisionModel |
DefaultAutomatedWorkflowTemplateRegistry.AutomatedWorkflowTemplateJobWrapper.perform(WorkflowActionModel action) |
| Modifier and Type | Method and Description |
|---|---|
protected WorkflowActionModel |
AbstractWorkflowFactory.getWorkAction(WorkflowActionTemplateModel templateAction,
List<WorkflowActionModel> workflowActions) |
| Modifier and Type | Method and Description |
|---|---|
void |
ActionActivationStrategy.doAfterActivation(WorkflowActionModel action) |
void |
DecideActionStrategy.doAfterActivationOfAndLink(WorkflowActionModel action) |
void |
DecideActionStrategy.doAfterActivationOfOrLink(WorkflowActionModel action) |
void |
DecideActionStrategy.doAfterDecisionMade(WorkflowActionModel action,
WorkflowDecisionModel selDec) |
| Modifier and Type | Method and Description |
|---|---|
void |
DefaultActionActivationStrategy.doAfterActivation(WorkflowActionModel action) |
void |
DefaultDecideActionStrategy.doAfterActivationOfAndLink(WorkflowActionModel action) |
void |
DefaultDecideActionStrategy.doAfterActivationOfOrLink(WorkflowActionModel action) |
void |
DefaultDecideActionStrategy.doAfterDecisionMade(WorkflowActionModel action,
WorkflowDecisionModel selDec) |
protected void |
DefaultDecideActionStrategy.writeAutomatedComment(WorkflowActionModel action,
String message,
String... messageParams) |
Copyright © 2017 SAP SE. All Rights Reserved.