001    package biz.hammurapi.jms.adapter.jca;
002    
003    import biz.hammurapi.config.Context;
004    
005    public interface Connection extends Context {
006    
007            void close();
008            
009            /**
010             * @return Serializable state of proxy objects. This state can be
011             * then passed to getConnection() method.
012             */
013            Object getState();
014    }