/*
 * JBoss, the OpenSource J2EE webOS
 *
 * Distributable under LGPL license.
 * See terms of license at gnu.org.
 */
package org.jboss.test.cmp2.cacheinvalidation.ejb;

/**
 * @author <a href="mailto:alex@jboss.org">Alexey Loubyansky</a>
 * @version <tt>$Revision: 1.2.2.1 $</tt>
 */
public interface ALocalHome
   extends javax.ejb.EJBLocalHome
{
   public ALocal create(java.lang.Long id, java.lang.String name)
      throws javax.ejb.CreateException;

   public ALocal findByPrimaryKey(java.lang.Long pk)
      throws javax.ejb.FinderException;
}