* Update an authentication record.
*/
public void set(int index, String url, String user, String pass, String domain, String realm) {
Authorization auth = new Authorization(url, user, pass, domain, realm);
if (index >= 0) {
getAuthObjects().set(index, new TestElementProperty(auth.getName(), auth));
} else {
getAuthObjects().addItem(auth);
}
}