01: package org.objectweb.jonas.jtests.beans.relation.tier;
02:
03: /**
04: * Local home interface for Tiephy.
05: */
06: public interface TiephyLocalHome extends javax.ejb.EJBLocalHome {
07:
08: public static final String COMP_NAME = "java:comp/env/ejb/TiephyLocal";
09:
10: public static final String JNDI_NAME = "Rel_Tier_TiephyLocalHome";
11:
12: public TiephyLocal create(TiephyValue value, TierLocal tier)
13: throws javax.ejb.CreateException;
14:
15: public TiephyLocal findByPrimaryKey(java.lang.Integer pk)
16: throws javax.ejb.FinderException;
17:
18: }
|