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

net.n2oapp.framework.boot.camunda.CamundaProxyEngine Maven / Gradle / Ivy

The newest version!
package net.n2oapp.framework.boot.camunda;

import java.util.List;
import java.util.Map;

/**
 * Интерфейс для работы с разными движками Camunda
 */
public interface CamundaProxyEngine {

    Long getCountTasks(Map inParams);

    List findTasks(Map inParams);

    ExtTask getTask(String id);

    void setTaskVariables(String taskId, Map variables);

    void completeTask(String taskId, Map variables);

    String startProcess(String processKey, Map variables);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy