Plugin API: Add create project API

Change-Id: Ibc4de0747f10336eaa51a818672e01cfd55c4a16
This commit is contained in:
David Ostrovsky
2014-03-24 22:36:26 -07:00
committed by David Ostrovsky
parent a0d6c3ae3f
commit 8f3931bb0d
4 changed files with 92 additions and 4 deletions

View File

@@ -14,6 +14,10 @@
package com.google.gerrit.extensions.api.projects;
import com.google.gerrit.extensions.restapi.RestApiException;
public interface ProjectApi {
ProjectApi create() throws RestApiException;
ProjectApi create(ProjectInput in) throws RestApiException;
BranchApi branch(String ref);
}