summaryrefslogtreecommitdiff
path: root/core/java/android/webkit/WebViewDatabase.java
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2012-07-17 16:43:00 +0100
committerAndroid (Google) Code Review <android-gerrit@google.com>2012-07-23 14:30:15 -0700
commit46ce1db6ff3290b82b12f11715fbe82734a44322 (patch)
tree7f78ccb0f646ea24e14626b8cf5b9f4842c33991 /core/java/android/webkit/WebViewDatabase.java
parent219dfa4d392851c1ffd7147cb78d4236658a79d8 (diff)
Improve JavaDoc for HTTP basic authentication methods
Bug: 5461416 Change-Id: Ie3bfbf6acde34ea184aa8c8b1d3841e2a2aa8a22
Diffstat (limited to 'core/java/android/webkit/WebViewDatabase.java')
-rw-r--r--core/java/android/webkit/WebViewDatabase.java13
1 files changed, 10 insertions, 3 deletions
diff --git a/core/java/android/webkit/WebViewDatabase.java b/core/java/android/webkit/WebViewDatabase.java
index 4f8c36e7634f..1987f53570d2 100644
--- a/core/java/android/webkit/WebViewDatabase.java
+++ b/core/java/android/webkit/WebViewDatabase.java
@@ -66,16 +66,23 @@ public class WebViewDatabase {
}
/**
- * Gets whether there are any HTTP authentication username/password combinations saved.
+ * Gets whether there are any saved credentials for HTTP authentication.
*
- * @return true if there are any HTTP authentication username/passwords saved
+ * @return whether there are any saved credentials
+ * @see Webview#getHttpAuthUsernamePassword
+ * @see Webview#setHttpAuthUsernamePassword
+ * @see clearHttpAuthUsernamePassword
*/
public boolean hasHttpAuthUsernamePassword() {
throw new MustOverrideException();
}
/**
- * Clears any HTTP authentication username/passwords that are saved.
+ * Clears any saved credentials for HTTP authentication.
+ *
+ * @see Webview#getHttpAuthUsernamePassword
+ * @see Webview#setHttpAuthUsernamePassword
+ * @see hasHttpAuthUsernamePassword
*/
public void clearHttpAuthUsernamePassword() {
throw new MustOverrideException();