Interface CommitsApi
-
@Produces("application/json") @Path("/rest/api/{jclouds.api-version}/projects") public interface CommitsApi
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Commitget(String project, String repo, String commitId, String path)CommitPagelist(String project, String repo, Boolean withCounts, Boolean followRenames, Boolean ignoreMissing, String merges, String path, String since, String until, Integer limit, Integer start)ChangePagelistChanges(String project, String repo, String commitId, Integer limit, Integer start)
-
-
-
Method Detail
-
get
@Named("commits:get") @Consumes("application/json") @Path("/{project}/repos/{repo}/commits/{commitId}") @GET Commit get(@PathParam("project") String project, @PathParam("repo") String repo, @PathParam("commitId") String commitId, @Nullable @QueryParam("path") String path)
-
listChanges
@Named("commits:list-changes") @Consumes("application/json") @Path("/{project}/repos/{repo}/commits/{commitId}/changes") @GET ChangePage listChanges(@PathParam("project") String project, @PathParam("repo") String repo, @PathParam("commitId") String commitId, @Nullable @QueryParam("limit") Integer limit, @Nullable @QueryParam("start") Integer start)
-
list
@Named("commits:list") @Consumes("application/json") @Path("/{project}/repos/{repo}/commits") @GET CommitPage list(@PathParam("project") String project, @PathParam("repo") String repo, @Nullable @QueryParam("withCounts") Boolean withCounts, @Nullable @QueryParam("followRenames") Boolean followRenames, @Nullable @QueryParam("ignoreMissing") Boolean ignoreMissing, @Nullable @QueryParam("merges") String merges, @Nullable @QueryParam("path") String path, @Nullable @QueryParam("since") String since, @Nullable @QueryParam("until") String until, @Nullable @QueryParam("limit") Integer limit, @Nullable @QueryParam("start") Integer start)
-
-