01: package org.objectweb.jonas.jtests.beans.relation.tier;
02:
03: /**
04: * Local home interface for Tier.
05: */
06: public interface TierLocalHome extends javax.ejb.EJBLocalHome {
07:
08: public static final String COMP_NAME = "java:comp/env/ejb/TierLocal";
09:
10: public static final String JNDI_NAME = "Rel_Tier_TierLocalHome";
11:
12: public TierLocal create(TierValue value)
13: throws javax.ejb.CreateException;
14:
15: public java.util.Collection findByTiemorOrTiephy(
16: java.lang.String nom) throws javax.ejb.FinderException;
17:
18: public TierLocal findByPrimaryKey(java.lang.Integer pk)
19: throws javax.ejb.FinderException;
20:
21: }
|