org.kie.internal.command.ExtendedKieCommands Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of kie-internal Show documentation
Show all versions of kie-internal Show documentation
The Drools and jBPM internal API which is NOT backwards compatible between releases.
package org.kie.internal.command;
import org.kie.api.command.Command;
import org.kie.api.command.KieCommands;
public interface ExtendedKieCommands extends KieCommands {
Command newEnableAuditLog( String directory, String filename );
Command newEnableAuditLog( String filename );
Command newClearActivationGroup(String name);
Command newClearAgenda();
Command newClearAgendaGroup(String name);
Command newClearRuleFlowGroup(String name);
}