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