001    package org.picocontainer.lifecycle;
002    
003    public interface ThirdPartyStartable {
004    
005        void sstart() throws Exception;
006    
007        void sstop();
008    
009        void ddispose();
010    }