com.netgrif.application.engine.rules.service.interfaces.IRuleEngine Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of application-engine Show documentation
Show all versions of application-engine Show documentation
System provides workflow management functions including user, role and data management.
package com.netgrif.application.engine.rules.service.interfaces;
import com.netgrif.application.engine.petrinet.domain.PetriNet;
import com.netgrif.application.engine.rules.domain.facts.CaseCreatedFact;
import com.netgrif.application.engine.rules.domain.facts.NetImportedFact;
import com.netgrif.application.engine.rules.domain.facts.ScheduledRuleFact;
import com.netgrif.application.engine.rules.domain.facts.TransitionEventFact;
import com.netgrif.application.engine.workflow.domain.Case;
import com.netgrif.application.engine.workflow.domain.Task;
public interface IRuleEngine {
int evaluateRules(Case useCase, CaseCreatedFact caseCreatedFact);
int evaluateRules(Case useCase, Task task, TransitionEventFact transitionEventFact);
int evaluateRules(Case useCase, ScheduledRuleFact scheduledRuleFact);
int evaluateRules(PetriNet petriNet, NetImportedFact fact);
int evaluateRules(PetriNet petriNet, ScheduledRuleFact scheduledRuleFact);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy