88import me .vlod .pinto .PintoServer ;
99import me .vlod .pinto .Tuple ;
1010import me .vlod .pinto .Utils ;
11- import me .vlod .pinto .consolehandler .commands .BanCMD ;
12- import me .vlod .pinto .consolehandler .commands .BanIPCMD ;
13- import me .vlod .pinto .consolehandler .commands .GetIPCMD ;
14- import me .vlod .pinto .consolehandler .commands .KickCMD ;
15- import me .vlod .pinto .consolehandler .commands .KickIPCMD ;
16- import me .vlod .pinto .consolehandler .commands .NotificationCMD ;
17- import me .vlod .pinto .consolehandler .commands .ReloadCMD ;
18- import me .vlod .pinto .consolehandler .commands .StopCMD ;
19- import me .vlod .pinto .consolehandler .commands .UnbanCMD ;
20- import me .vlod .pinto .consolehandler .commands .UnbanIPCMD ;
11+ import me .vlod .pinto .consolehandler .commands .Ban ;
12+ import me .vlod .pinto .consolehandler .commands .BanIP ;
13+ import me .vlod .pinto .consolehandler .commands .ChangePassword ;
14+ import me .vlod .pinto .consolehandler .commands .GetIP ;
15+ import me .vlod .pinto .consolehandler .commands .Kick ;
16+ import me .vlod .pinto .consolehandler .commands .KickIP ;
17+ import me .vlod .pinto .consolehandler .commands .ListUsers ;
18+ import me .vlod .pinto .consolehandler .commands .Notification ;
19+ import me .vlod .pinto .consolehandler .commands .Reload ;
20+ import me .vlod .pinto .consolehandler .commands .Stop ;
21+ import me .vlod .pinto .consolehandler .commands .Unban ;
22+ import me .vlod .pinto .consolehandler .commands .UnbanIP ;
2123
2224public class ConsoleHandler {
2325 protected PintoServer server ;
@@ -28,16 +30,18 @@ public class ConsoleHandler {
2830 public ConsoleHandler (PintoServer server , ConsoleCaller caller ) {
2931 this .server = server ;
3032 this .caller = caller ;
31- this .commands .add (new BanCMD ());
32- this .commands .add (new BanIPCMD ());
33- this .commands .add (new GetIPCMD ());
34- this .commands .add (new KickCMD ());
35- this .commands .add (new KickIPCMD ());
36- this .commands .add (new ReloadCMD ());
37- this .commands .add (new UnbanCMD ());
38- this .commands .add (new UnbanIPCMD ());
39- this .commands .add (new StopCMD ());
40- this .commands .add (new NotificationCMD ());
33+ this .commands .add (new Ban ());
34+ this .commands .add (new BanIP ());
35+ this .commands .add (new GetIP ());
36+ this .commands .add (new Kick ());
37+ this .commands .add (new KickIP ());
38+ this .commands .add (new Reload ());
39+ this .commands .add (new Unban ());
40+ this .commands .add (new UnbanIP ());
41+ this .commands .add (new Stop ());
42+ this .commands .add (new ListUsers ());
43+ this .commands .add (new Notification ());
44+ this .commands .add (new ChangePassword ());
4145 }
4246
4347 public void handleInput (String input ) {
0 commit comments