Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.config;
2
3/**
4 * Component which can be activated, passivated, and validated.
5 * @author Pavel
6 */
7public interface PoolableComponent extends Component {
8
9 void activate() throws ConfigurationException;
10
11 void passivate() throws ConfigurationException;
12
13 boolean validate();
14
15}
16