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

com.github.dynamicextensionsalfresco.workflow.activiti.WorkflowTaskRegistry Maven / Gradle / Ivy

Go to download

Adds an OSGi container to alfresco repository supporting dynamic code reloading, classpath isolation and a bunch of other useful features

There is a newer version: 3.1.0
Show newest version
package com.github.dynamicextensionsalfresco.workflow.activiti;

import org.activiti.engine.delegate.ExecutionListener;
import org.activiti.engine.delegate.JavaDelegate;
import org.activiti.engine.delegate.TaskListener;

import javax.annotation.Nonnull;

/**
 * @author Laurent Van der Linden
 */
public interface WorkflowTaskRegistry {
    void registerDelegate(@Nonnull String id, @Nonnull JavaDelegate delegate);

    void unregisterDelegate(@Nonnull String id);

    JavaDelegate findDelegate(@Nonnull String id);

    void registerTaskListener(@Nonnull String id, @Nonnull TaskListener taskListener);

    void unregisterTaskListener(@Nonnull String id);

    TaskListener findTaskListener(@Nonnull String id);

    void registerExecutionListener(@Nonnull String id, @Nonnull ExecutionListener executionListener);

    void unregisterExecutionListener(@Nonnull String id);

    ExecutionListener findExecutionListener(@Nonnull String id);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy