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