com.netgrif.application.engine.workflow.service.interfaces.IEventService 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.workflow.service.interfaces;
import com.netgrif.application.engine.petrinet.domain.Transition;
import com.netgrif.application.engine.petrinet.domain.dataset.Field;
import com.netgrif.application.engine.petrinet.domain.dataset.logic.action.Action;
import com.netgrif.application.engine.petrinet.domain.events.DataEventType;
import com.netgrif.application.engine.petrinet.domain.events.EventPhase;
import com.netgrif.application.engine.workflow.domain.Case;
import com.netgrif.application.engine.workflow.domain.Task;
import com.netgrif.application.engine.workflow.domain.eventoutcomes.EventOutcome;
import com.netgrif.application.engine.workflow.domain.eventoutcomes.dataoutcomes.SetDataEventOutcome;
import java.util.List;
import java.util.Optional;
public interface IEventService {
List runActions(List actions, Case useCase, Task task, Transition transition);
List runActions(List actions, Case useCase, Optional task);
List runActions(List actions);
List processDataEvents(Field field, DataEventType actionTrigger, EventPhase phase, Case useCase, Task task);
List runEventActions(Case useCase, Task task, List actions, DataEventType trigger);
void runEventActionsOnChanged(Task task, SetDataEventOutcome outcome, DataEventType trigger);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy