1 5 package com.opensymphony.workflow.spi; 6 7 import java.util.Date ; 8 9 10 15 public interface Step { 16 18 22 public int getActionId(); 23 24 public String getCaller(); 25 26 29 public Date getDueDate(); 30 31 34 public long getEntryId(); 35 36 39 public Date getFinishDate(); 40 41 44 public long getId(); 45 46 49 public String getOwner(); 50 51 54 public long[] getPreviousStepIds(); 55 56 59 public Date getStartDate(); 60 61 64 public String getStatus(); 65 66 69 public int getStepId(); 70 } 71 | Popular Tags |