1 7 8 package org.jboss.ha.httpsession.beanimpl.interfaces; 9 10 import java.rmi.RemoteException ; 11 import javax.ejb.CreateException ; 12 import javax.ejb.FinderException ; 13 import java.util.Collection ; 14 15 import org.jboss.ha.httpsession.interfaces.SerializableHttpSession; 16 17 32 33 public interface LocalClusteredHTTPSessionHome extends javax.ejb.EJBLocalHome 34 { 35 public static String JNDI_NAME = "clustering/LocalHTTPSession"; 36 37 public LocalClusteredHTTPSession create (String sessionId) throws RemoteException , CreateException ; 40 public LocalClusteredHTTPSession create (String sessionId, SerializableHttpSession session) throws RemoteException , CreateException ; 41 42 public LocalClusteredHTTPSession findByPrimaryKey (String sessionId) throws RemoteException , FinderException ; 45 46 public Collection findAll() throws RemoteException , FinderException ; 49 50 } 51 | Popular Tags |