01: package biz.hammurapi.config;
02:
03: /**
04: * Component which can be activated, passivated, and validated.
05: * @author Pavel
06: */
07: public interface PoolableComponent extends Component {
08:
09: void activate() throws ConfigurationException;
10:
11: void passivate() throws ConfigurationException;
12:
13: boolean validate();
14:
15: }
|