01: /*
02: * Generated by XDoclet - Do not edit!
03: */
04: package com.mockrunner.example.ejb.interfaces;
05:
06: /**
07: * Home interface for BillEntity.
08: */
09: public interface BillEntityHome extends javax.ejb.EJBHome {
10: public static final String COMP_NAME = "java:comp/env/ejb/BillEntity";
11: public static final String JNDI_NAME = "com/mockrunner/example/UserEntity";
12:
13: public com.mockrunner.example.ejb.interfaces.BillEntity create(
14: java.lang.Integer id) throws javax.ejb.CreateException,
15: java.rmi.RemoteException;
16:
17: public java.util.Collection findUnpaid()
18: throws javax.ejb.FinderException, java.rmi.RemoteException;
19:
20: public java.util.Collection findAll()
21: throws javax.ejb.FinderException, java.rmi.RemoteException;
22:
23: public com.mockrunner.example.ejb.interfaces.BillEntity findByPrimaryKey(
24: java.lang.Integer pk) throws javax.ejb.FinderException,
25: java.rmi.RemoteException;
26:
27: }
|