summaryrefslogtreecommitdiffstats
path: root/java/com/google/gerrit/server/account/Realm.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/gerrit/server/account/Realm.java')
-rw-r--r--java/com/google/gerrit/server/account/Realm.java9
1 files changed, 8 insertions, 1 deletions
diff --git a/java/com/google/gerrit/server/account/Realm.java b/java/com/google/gerrit/server/account/Realm.java
index 3f642f7235..ffc95a38d7 100644
--- a/java/com/google/gerrit/server/account/Realm.java
+++ b/java/com/google/gerrit/server/account/Realm.java
@@ -56,7 +56,14 @@ public interface Realm {
*/
Account.Id lookup(String accountName) throws IOException;
- /** Returns true if the account is active. */
+ /**
+ * Returns true if the account is active.
+ *
+ * @throws LoginException thrown if login is required and fails
+ * @throws NamingException may be thrown if the name is invalid
+ * @throws AccountException may be thrown in case the username is ambiguous
+ * @throws IOException thrown in case of IO errors
+ */
default boolean isActive(@SuppressWarnings("unused") String username)
throws LoginException, NamingException, AccountException, IOException {
return true;