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

/**
 * @author Thomas Diesler
 * @author Scott.Stark@jboss.org
 * @version $Revision: 1.1 $
 */
public interface TimerEntityHome
   extends javax.ejb.EJBHome
{
   public static final String COMP_NAME="java:comp/env/ejb/test/timer/TimerEntity";
   public static final String JNDI_NAME="ejb/test/timer/TimerEntity";
   public static final String SECURED_JNDI_NAME="ejb/test/timer/SecuredTimerEntity";

   public org.jboss.test.timer.interfaces.TimerEntity create(java.lang.Integer pk)
      throws javax.ejb.CreateException,java.rmi.RemoteException;

   public org.jboss.test.timer.interfaces.TimerEntity findByPrimaryKey(java.lang.Integer pk)
      throws javax.ejb.FinderException,java.rmi.RemoteException;

}