Merge "Update LockSettingsCmd's showUsage method to defer to calling "locksettings help"." into tm-dev am: a2d50b2bbf

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/17575563

Change-Id: I906708d5073cdb82687144d42ef46bf276e936ff
Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
This commit is contained in:
TreeHugger Robot
2022-04-05 19:50:32 +00:00
committed by Automerger Merge Worker

View File

@@ -28,43 +28,13 @@ import java.io.PrintStream;
public final class LockSettingsCmd extends BaseCommand { public final class LockSettingsCmd extends BaseCommand {
private static final String USAGE =
"usage: locksettings set-pattern [--old OLD_CREDENTIAL] NEW_PATTERN\n" +
" locksettings set-pin [--old OLD_CREDENTIAL] NEW_PIN\n" +
" locksettings set-password [--old OLD_CREDENTIAL] NEW_PASSWORD\n" +
" locksettings clear [--old OLD_CREDENTIAL]\n" +
" locksettings verify [--old OLD_CREDENTIAL]\n" +
" locksettings set-disabled DISABLED\n" +
" locksettings get-disabled\n" +
"\n" +
"flags: \n" +
" --user USER_ID: specify the user, default value is current user\n" +
"\n" +
"locksettings set-pattern: sets a pattern\n" +
" A pattern is specified by a non-separated list of numbers that index the cell\n" +
" on the pattern in a 1-based manner in left to right and top to bottom order,\n" +
" i.e. the top-left cell is indexed with 1, whereas the bottom-right cell\n" +
" is indexed with 9. Example: 1234\n" +
"\n" +
"locksettings set-pin: sets a PIN\n" +
"\n" +
"locksettings set-password: sets a password\n" +
"\n" +
"locksettings clear: clears the unlock credential\n" +
"\n" +
"locksettings verify: verifies the credential and unlocks the user\n" +
"\n" +
"locksettings set-disabled: sets whether the lock screen should be disabled\n" +
"\n" +
"locksettings get-disabled: retrieves whether the lock screen is disabled\n";
public static void main(String[] args) { public static void main(String[] args) {
(new LockSettingsCmd()).run(args); (new LockSettingsCmd()).run(args);
} }
@Override @Override
public void onShowUsage(PrintStream out) { public void onShowUsage(PrintStream out) {
out.println(USAGE); main(new String[] { "help" });
} }
@Override @Override