001    package net.databinder.hib.conv.components;
002    
003    import org.hibernate.classic.Session;
004    
005    public interface IConversationPage {
006            public Session getConversationSession(Object key);
007            public void setConversationSession(Object key, Session conversationSession);
008    }