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 CurrentStep.
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 CurrentStepLocal extends javax.ejb.EJBLocalObject,
16: com.opensymphony.workflow.spi.ejb.AbstractLocalStep {
17: //~ Methods ////////////////////////////////////////////////////////////////
18:
19: public void setActionId(int actionId);
20:
21: public int getActionId();
22:
23: public void setCaller(java.lang.String caller);
24:
25: public java.lang.String getCaller();
26:
27: public void setDueDate(java.sql.Timestamp dueDate);
28:
29: public java.sql.Timestamp getDueDate();
30:
31: public long getEntryId();
32:
33: public void setFinishDate(java.sql.Timestamp finishDate);
34:
35: public java.sql.Timestamp getFinishDate();
36:
37: public java.lang.Long getId();
38:
39: public java.lang.String getOwner();
40:
41: public java.sql.Timestamp getStartDate();
42:
43: public void setStatus(java.lang.String status);
44:
45: public java.lang.String getStatus();
46:
47: public int getStepId();
48: }
|