01: /*
02: * Copyright (c) 2002-2003 by OpenSymphony
03: * All rights reserved.
04: */
05: /*
06: * Generated by XDoclet - Do not edit!
07: */
08: package com.opensymphony.workflow.spi.ejb;
09:
10: /**
11: * Local interface for HistoryStep.
12: * @author <a href="mailto:hani@formicary.net">Hani Suleiman</a>
13: * @author <a href="mailto:plightbo@hotmail.com">Pat Lightbody</a>
14: */
15: public interface HistoryStepLocal extends javax.ejb.EJBLocalObject,
16: com.opensymphony.workflow.spi.ejb.AbstractLocalStep {
17: //~ Methods ////////////////////////////////////////////////////////////////
18:
19: public int getActionId();
20:
21: public java.lang.String getCaller();
22:
23: public java.sql.Timestamp getDueDate();
24:
25: public long getEntryId();
26:
27: public java.sql.Timestamp getFinishDate();
28:
29: public java.lang.Long getId();
30:
31: public java.lang.String getOwner();
32:
33: public java.sql.Timestamp getStartDate();
34:
35: public java.lang.String getStatus();
36:
37: public int getStepId();
38: }
|