mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-22 16:03:15 +00:00
Interface WIP
This commit is contained in:
parent
58b87f879a
commit
801d7e0737
|
@ -1,4 +1,17 @@
|
|||
package one.nem.lacerta.source.jgit;
|
||||
|
||||
import org.eclipse.jgit.lib.Repository;
|
||||
|
||||
public interface ManageRepo {
|
||||
|
||||
// リポジトリ取得
|
||||
Repository getRepository(String id);
|
||||
// リポジトリ作成
|
||||
Repository createRepository(String id);
|
||||
// リポジトリ削除
|
||||
void deleteRepository(String id);
|
||||
// リポジトリ存在確認
|
||||
boolean repositoryExists(String id);
|
||||
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user