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