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

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

   public org.jboss.test.timer.interfaces.TimerSFSB create()
      throws javax.ejb.CreateException,java.rmi.RemoteException;

}