package org.jboss.ha.httpsession.beanimpl.interfaces;
import java.rmi.RemoteException;
import javax.ejb.CreateException;
import javax.ejb.FinderException;
import java.util.Collection;
import org.jboss.ha.httpsession.interfaces.SerializableHttpSession;
public interface LocalClusteredHTTPSessionHome extends javax.ejb.EJBLocalHome
{
public static String JNDI_NAME = "clustering/LocalHTTPSession";
public LocalClusteredHTTPSession create (String sessionId) throws RemoteException, CreateException;
public LocalClusteredHTTPSession create (String sessionId, SerializableHttpSession session) throws RemoteException, CreateException;
public LocalClusteredHTTPSession findByPrimaryKey (String sessionId) throws RemoteException, FinderException;
public Collection findAll() throws RemoteException, FinderException;
}