* @param userName The username to be used for authentication.
* @param password The password to be used for authentication.
* @deprecated Use the api key constructor instead.
*/
public RallyRestApi(URI server, String userName, String password) {
this(new BasicAuthClient(server, userName, password));
}