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