Interface RepositoryApi


  • @Path("/api/repositories")
    @Consumes("application/json")
    public interface RepositoryApi
    • Method Detail

      • createRepository

        @Named("repository:create")
        @Path("/{repoKey}")
        @PUT
        boolean createRepository​(@PathParam("repoKey")
                                 String repoKey)
      • deleteRepository

        @Named("repository:delete")
        @Path("/{repoKey}")
        @DELETE
        boolean deleteRepository​(@PathParam("repoKey")
                                 String repoKey)