/******************************************************************************* *******************************************************************************/ package at.gv.egiz.eaaf.core.impl.idp.process; /** * Represents a certain process instance state. * @author tknall * */ public enum ProcessInstanceState { /** * Indicates that the process with this process instance has not yet been started. */ NOT_STARTED, /** * Indicates that the process is currently running. */ STARTED, /** * Indicates that the process has been suspended until being waken up by someonce calling {@code signal}. */ SUSPENDED, /** * Indicates that the process has been completed. */ ENDED }