1 5 package com.opensymphony.workflow.spi; 6 7 8 13 public interface WorkflowEntry { 14 16 public static final int CREATED = 0; 17 public static final int ACTIVATED = 1; 18 public static final int SUSPENDED = 2; 19 public static final int KILLED = 3; 20 public static final int COMPLETED = 4; 21 public static final int UNKNOWN = -1; 22 23 25 28 public long getId(); 29 30 33 public boolean isInitialized(); 34 35 public int getState(); 36 37 40 public String getWorkflowName(); 41 } 42 | Popular Tags |