* @param username the username used to authenticate with the server
* @param password the password used to authenticate with the server
* @return a new ScriptRunner
*/
public static ScriptRunner create(String url, String username, String password) {
return new DefaultScriptRunner(new HttpConnector(url, username, password));
}