Pass along the user password if specified.
git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@1174 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
@@ -1,5 +1,5 @@
|
|||||||
//
|
//
|
||||||
// $Id: SimulatorApp.java,v 1.5 2002/02/09 20:47:11 mdb Exp $
|
// $Id: SimulatorApp.java,v 1.6 2002/04/03 21:53:17 shaper Exp $
|
||||||
|
|
||||||
package com.threerings.micasa.simulator.client;
|
package com.threerings.micasa.simulator.client;
|
||||||
|
|
||||||
@@ -101,9 +101,13 @@ public class SimulatorApp
|
|||||||
username =
|
username =
|
||||||
"bob" + ((int)(Math.random() * Integer.MAX_VALUE) % 500);
|
"bob" + ((int)(Math.random() * Integer.MAX_VALUE) % 500);
|
||||||
}
|
}
|
||||||
|
String password = System.getProperty("password");
|
||||||
|
if (password == null) {
|
||||||
|
password = "test";
|
||||||
|
}
|
||||||
|
|
||||||
// create and set our credentials
|
// create and set our credentials
|
||||||
Credentials creds = new UsernamePasswordCreds(username, "test");
|
Credentials creds = new UsernamePasswordCreds(username, password);
|
||||||
client.setCredentials(creds);
|
client.setCredentials(creds);
|
||||||
client.logon();
|
client.logon();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user