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