Paul Martin
2016-04-16 eecaad8b8e2c447429c31a01d49260ddd6b4ee03
src/main/java/com/gitblit/manager/IRepositoryManager.java
@@ -159,6 +159,14 @@
   void resetRepositoryListCache();
   /**
    * Reset all caches for this repository.
    *
    * @param repositoryName
    * @since 1.5.1
    */
   void resetRepositoryCache(String repositoryName);
   /**
    * Returns the list of all repositories available to Gitblit. This method
    * does not consider user access permissions.
    *
@@ -185,6 +193,14 @@
     * @since 1.4.0
    */
   Repository getRepository(String repositoryName, boolean logError);
   /**
    * Returns the list of all repository models.
    *
    * @return list of all repository models
     * @since 1.6.1
    */
   List<RepositoryModel> getRepositoryModels();
   /**
    * Returns the list of repository models that are accessible to the user.
@@ -331,6 +347,15 @@
   void updateConfiguration(Repository r, RepositoryModel repository);
   /**
    * Returns true if the repository can be deleted.
    *
    * @param model
    * @return true if the repository can be deleted
    * @since 1.6.0
    */
   boolean canDelete(RepositoryModel model);
   /**
    * Deletes the repository from the file system and removes the repository
    * permission from all repository users.
    *