Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/RepositoryResolver.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/RepositoryResolver.java b/org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/RepositoryResolver.java
index b2354193e1..611d9a9216 100644
--- a/org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/RepositoryResolver.java
+++ b/org.eclipse.jgit/src/org/eclipse/jgit/transport/resolver/RepositoryResolver.java
@@ -76,11 +76,12 @@ public interface RepositoryResolver<C> {
* the repository does not exist or the name is incorrectly
* formatted as a repository name.
* @throws ServiceNotAuthorizedException
- * the repository exists, but HTTP access is not allowed for the
- * current user.
+ * the repository may exist, but HTTP access is not allowed
+ * without authentication, i.e. this corresponds to an HTTP 401
+ * Unauthorized.
* @throws ServiceNotEnabledException
- * the repository exists, but HTTP access is not allowed on the
- * target repository, by any user.
+ * the repository may exist, but HTTP access is not allowed on the
+ * target repository, for the current user.
*/
Repository open(C req, String name) throws RepositoryNotFoundException,
ServiceNotAuthorizedException, ServiceNotEnabledException;

Back to the top