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

org.drools.runtime.process.WorkItem Maven / Gradle / Ivy

There is a newer version: 5.1.1
Show newest version
package org.drools.runtime.process;

import java.util.Map;

public interface WorkItem {

    int PENDING   = 0;
    int ACTIVE    = 1;
    int COMPLETED = 2;
    int ABORTED   = 3;

    long getId();

    String getName();

    int getState();

    Object getParameter(String name);

    Map getParameters();

    Object getResult(String name);

    Map getResults();

    long getProcessInstanceId();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy