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

import javax.ejb.EJBException;
import javax.ejb.EJBLocalHome;
import javax.ejb.CreateException;

/** A simple local home for CalledSessionLocal sessions.

@author Scott.Stark@jboss.org
@version $Revision: 1.1.2.1 $
*/
public interface CalledSessionLocalHome extends EJBLocalHome
{
   CalledSessionLocal create() throws CreateException;
}