Exemplo n.º 1
0
 /**
  * * Set the HTTP authentication credentials for a given host and realm.
  *
  * @param host The host for the credentials.
  * @param realm The realm for the credentials.
  * @param username The username for the password. If it is null, it means password can't be saved.
  * @param password The password
  */
 public void setHttpAuthUsernamePassword(
     String host, String realm, String username, String password) {
   mDatabase.setHttpAuthUsernamePassword(host, realm, username, password);
 }