AdminConsoleCommandModule: Rename to SshModule This makes the naming consistent with other plugins that provide SSH commands. Change-Id: I6dd228cd1791fb857adaeff590ecb1d188e23cce
diff --git a/BUILD b/BUILD index 4201ec2..ea6778f 100644 --- a/BUILD +++ b/BUILD
@@ -5,7 +5,7 @@ srcs = glob(["src/main/java/**/*.java"]), manifest_entries = [ "Gerrit-PluginName: admin-console", - "Gerrit-SshModule: com.googlesource.gerrit.plugins.adminconsole.AdminConsoleCommandModule", + "Gerrit-SshModule: com.googlesource.gerrit.plugins.adminconsole.SshModule", "Implementation-Title: Plugin admin-console", "Implementation-URL: https://gerrit-review.googlesource.com/#/admin/projects/plugins/admin-console", ],
diff --git a/src/main/java/com/googlesource/gerrit/plugins/adminconsole/AdminConsoleCommandModule.java b/src/main/java/com/googlesource/gerrit/plugins/adminconsole/SshModule.java similarity index 93% rename from src/main/java/com/googlesource/gerrit/plugins/adminconsole/AdminConsoleCommandModule.java rename to src/main/java/com/googlesource/gerrit/plugins/adminconsole/SshModule.java index 5c814fa..fa73ecc 100644 --- a/src/main/java/com/googlesource/gerrit/plugins/adminconsole/AdminConsoleCommandModule.java +++ b/src/main/java/com/googlesource/gerrit/plugins/adminconsole/SshModule.java
@@ -16,7 +16,7 @@ import com.google.gerrit.sshd.PluginCommandModule; -public class AdminConsoleCommandModule extends PluginCommandModule { +public class SshModule extends PluginCommandModule { @Override protected void configureCommands() { command(ShowAccountCommand.class);