mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-07-21 14:12:14 +02:00
10 lines
104 B
Java
10 lines
104 B
Java
|
|
package sonia.scm.lifecycle;
|
||
|
|
|
||
|
|
public interface LifeCycle {
|
||
|
|
|
||
|
|
void initialize();
|
||
|
|
|
||
|
|
void shutdown();
|
||
|
|
|
||
|
|
}
|