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

org.drools.grid.remote.command.GetWorkItemManagerCommand Maven / Gradle / Ivy

There is a newer version: 5.6.0.Final
Show newest version
package org.drools.grid.remote.command;

import org.drools.command.Context;
import org.drools.command.impl.GenericCommand;
import org.drools.command.impl.KnowledgeCommandContext;
import org.drools.runtime.process.WorkItemManager;

public class GetWorkItemManagerCommand
    implements
    GenericCommand {

    private static final long serialVersionUID = 1L;

    public WorkItemManager execute(Context context) {
        WorkItemManager workItemManager = ((KnowledgeCommandContext) context).getWorkItemManager();
        return workItemManager;
    }
    
    
   

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy