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 HistoryStepPrev.
12: * @author Hani Suleiman (hani@formicary.net) Date: Apr 7, 2003 Time: 8:17:09 PM
13: */
14: public interface HistoryStepPrevLocalHome extends
15: javax.ejb.EJBLocalHome {
16: //~ Static fields/initializers /////////////////////////////////////////////
17:
18: public static final String COMP_NAME = "java:comp/env/ejb/HistoryStepPrev";
19: public static final String JNDI_NAME = "HistoryStepPrev";
20:
21: //~ Methods ////////////////////////////////////////////////////////////////
22:
23: public com.opensymphony.workflow.spi.ejb.HistoryStepPrevLocal create(
24: long id, long previousId) throws javax.ejb.CreateException;
25:
26: public com.opensymphony.workflow.spi.ejb.HistoryStepPrevLocal findByPrimaryKey(
27: com.opensymphony.workflow.spi.ejb.PreviousStepPK pk)
28: throws javax.ejb.FinderException;
29:
30: public java.util.Collection findByStepId(long entryId)
31: throws javax.ejb.FinderException;
32: }
|