Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2de47571 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Automerger Merge Worker
Browse files

Merge "Update LockSettingsCmd's showUsage method to defer to calling...

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

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



Change-Id: I606aaea5ee83094d196ddfdbd9974e21b7cba19b
Signed-off-by: default avatarAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
parents cc75aae4 821f3b79
Loading
Loading
Loading
Loading
+1 −31
Original line number Diff line number Diff line
@@ -28,43 +28,13 @@ import java.io.PrintStream;

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) {
        (new LockSettingsCmd()).run(args);
    }

    @Override
    public void onShowUsage(PrintStream out) {
        out.println(USAGE);
        main(new String[] { "help" });
    }

    @Override