1 5 package com.opensymphony.workflow.spi.ejb; 6 7 import java.sql.Timestamp ; 8 9 10 16 public interface AbstractLocalStep { 17 19 public int getActionId(); 20 21 public String getCaller(); 22 23 public Timestamp getDueDate(); 24 25 public long getEntryId(); 26 27 public Timestamp getFinishDate(); 28 29 public Long getId(); 30 31 public String getOwner(); 32 33 public Timestamp getStartDate(); 34 35 public String getStatus(); 36 37 public int getStepId(); 38 } 39 | Popular Tags |