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 home 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 HistoryStepLocalHome extends javax.ejb.EJBLocalHome {
16: //~ Static fields/initializers /////////////////////////////////////////////
17:
18: public static final String COMP_NAME = "java:comp/env/ejb/HistoryStep";
19: public static final String JNDI_NAME = "HistoryStep";
20:
21: //~ Methods ////////////////////////////////////////////////////////////////
22:
23: public com.opensymphony.workflow.spi.ejb.HistoryStepLocal create(
24: long id, long entryId, int stepId, int actionId,
25: java.lang.String owner, java.sql.Timestamp startDate,
26: java.sql.Timestamp dueDate, java.sql.Timestamp finishDate,
27: java.lang.String status, java.lang.String caller)
28: throws javax.ejb.CreateException;
29:
30: public java.util.Collection findByEntryId(long entryId)
31: throws javax.ejb.FinderException;
32:
33: public com.opensymphony.workflow.spi.ejb.HistoryStepLocal findByPrimaryKey(
34: java.lang.Long pk) throws javax.ejb.FinderException;
35: }
|