All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.activiti.engine.delegate.event.ActivitiProcessStartedEvent Maven / Gradle / Ivy

package org.activiti.engine.delegate.event;

/**
 * An {@link org.activiti.engine.delegate.event.ActivitiEvent} related to start event being sent when activiti process
 * instance is started.
 *

 */
public interface ActivitiProcessStartedEvent extends ActivitiEntityWithVariablesEvent {

    /**
     * @return the id of the process instance of the nested process that starts the current process instance, or null if
     *         the current process instance is not started into a nested process.
     */
    String getNestedProcessInstanceId();

    /**
     * @return the id of the process definition of the nested process that starts the current process instance, or null
     *         if the current process instance is not started into a nested process.
     */
    String getNestedProcessDefinitionId();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy