}
public Password password(String msg, String lockerId, PasswordLocker... lockers) {
Password pw = this.password(msg);
PasswordLocker locker = null;
if (lockers.length == 1) {
if (this.confirm("Do you wish to save this password", true)) locker = lockers[0];
} else {
locker = this.choose("Choose which locker to save in", null, lockers);
}
if (locker != null) locker.setPassword(lockerId, pw);
return pw;
}