Class TaskActivityBehavior

    • Field Detail

      • activityInstanceId

        protected java.lang.String activityInstanceId
        Activity instance id before execution.
    • Constructor Detail

      • TaskActivityBehavior

        public TaskActivityBehavior()
    • Method Detail

      • preExecution

        protected void preExecution​(ActivityExecution execution)
                             throws java.lang.Exception
        The method which will be called before the execution is performed.
        Parameters:
        execution - the execution which is used during execution
        Throws:
        java.lang.Exception
      • performExecution

        protected void performExecution​(ActivityExecution execution)
                                 throws java.lang.Exception
        The method which should be overridden by the sub classes to perform an execution.
        Parameters:
        execution - the execution which is used during performing the execution
        Throws:
        java.lang.Exception
      • postExecution

        protected void postExecution​(ActivityExecution execution)
                              throws java.lang.Exception
        The method which will be called after performing the execution.
        Parameters:
        execution - the execution
        Throws:
        java.lang.Exception