Class DefaultTaskProcessForm

java.lang.Object
com.vaadin.flow.component.Component
com.vaadin.flow.component.Composite<T>
io.jmix.flowui.view.View<ViewLayout>
io.jmix.flowui.view.StandardView
io.jmix.bpmflowui.view.defaulttaskform.DefaultTaskProcessForm
All Implemented Interfaces:
com.vaadin.flow.component.AttachNotifier, com.vaadin.flow.component.DetachNotifier, com.vaadin.flow.component.HasElement, com.vaadin.flow.component.HasStyle, com.vaadin.flow.router.AfterNavigationObserver, com.vaadin.flow.router.BeforeEnterObserver, com.vaadin.flow.router.BeforeLeaveObserver, com.vaadin.flow.router.HasDynamicTitle, com.vaadin.flow.router.internal.AfterNavigationHandler, com.vaadin.flow.router.internal.BeforeEnterHandler, com.vaadin.flow.router.internal.BeforeLeaveHandler, FragmentOwner, Serializable

@Route(value="bpm/defaulttaskprocessform", layout=DefaultMainViewParent.class) @ViewController("bpm_DefaultTaskProcessForm") @ViewDescriptor("default-task-process-form.xml") public class DefaultTaskProcessForm extends StandardView
See Also:
  • Field Details

    • taskService

      @Autowired protected org.flowable.engine.TaskService taskService
    • eventPublisher

      @Autowired protected UiEventPublisher eventPublisher
    • entitiesConverter

      @Autowired protected FlowableEntitiesConverter entitiesConverter
    • currentUserSubstitution

      @Autowired protected CurrentUserSubstitution currentUserSubstitution
    • processFormViews

      @Autowired protected ProcessFormViews processFormViews
    • messageBundle

      @Autowired protected MessageBundle messageBundle
    • cancelBtn

      @ViewComponent protected com.vaadin.flow.component.button.Button cancelBtn
    • claimAndCloseBtn

      @ViewComponent protected com.vaadin.flow.component.button.Button claimAndCloseBtn
    • claimAndResumeBtn

      @ViewComponent protected com.vaadin.flow.component.button.Button claimAndResumeBtn
    • completeBtn

      @ViewComponent protected com.vaadin.flow.component.button.Button completeBtn
    • confirmationDiv

      @ViewComponent protected com.vaadin.flow.component.html.Div confirmationDiv
    • task

      protected org.flowable.task.api.Task task
  • Constructor Details

    • DefaultTaskProcessForm

      public DefaultTaskProcessForm()
  • Method Details

    • setTask

      public void setTask(org.flowable.task.api.Task task)
    • onBeforeShow

      @Subscribe public void onBeforeShow(View.BeforeShowEvent event)
    • getPageTitle

      public String getPageTitle()
      Specified by:
      getPageTitle in interface com.vaadin.flow.router.HasDynamicTitle
      Overrides:
      getPageTitle in class View<ViewLayout>
    • onCompleteBtnClick

      @Subscribe("completeBtn") public void onCompleteBtnClick(com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.button.Button> event)
    • onClaimAndResumeBtnClick

      @Subscribe("claimAndResumeBtn") public void onClaimAndResumeBtnClick(com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.button.Button> event)
    • onClaimAndCloseBtnClick

      @Subscribe("claimAndCloseBtn") public void onClaimAndCloseBtnClick(com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.button.Button> event)
    • onCancelBtnClick

      @Subscribe("cancelBtn") public void onCancelBtnClick(com.vaadin.flow.component.ClickEvent<com.vaadin.flow.component.button.Button> event)