1 package org.objectweb.jonas.jtests.beans.relation.tier;2 3 /**4 * Local home interface for Tier.5 */6 public interface TierLocalHome extends javax.ejb.EJBLocalHome {7 8 public static final String COMP_NAME = "java:comp/env/ejb/TierLocal";9 10 public static final String JNDI_NAME = "Rel_Tier_TierLocalHome";11 12 public TierLocal create(TierValue value) throws javax.ejb.CreateException ;13 14 public java.util.Collection findByTiemorOrTiephy(java.lang.String nom) throws javax.ejb.FinderException ;15 16 public TierLocal findByPrimaryKey(java.lang.Integer pk) throws javax.ejb.FinderException ;17 18 }