Inspector | Message | Severity | Location |
---|---|---|---|
Java Inspector 048 | Copyrights information should be present in each file. | 1 |
1package biz.hammurapi.config;
2
3/**
4 * If instance created by DomConfigFactory implements this interface then the factory
5 * passes a command to the instance to restart it if the instance detects a failure which
6 * can be possibly fixed by re-creating the instance from XML configuration.
7 * @author Pavel Vlasov
8 *
9 */
10public interface Restartable {
11 void setRestartCommand(RestartCommand command);
12}
13