Package mireka.pop.command

Examples of mireka.pop.command.QuitCommand


    public CommandHandler(Session session) {
        this.session = session;
        commandMap.put("NOOP", new NoopCommand(session));
        commandMap.put("CAPA", new CapaCommand(session));
        commandMap.put("QUIT", new QuitCommand(session));
        UserCommand userCommand = new UserCommand(session);
        commandMap.put("USER", userCommand);
        commandMap.put("PASS", new PassCommand(session, userCommand));
        commandMap.put("STAT", new StatCommand(session));
        commandMap.put("LIST", new ListCommand(session));
View Full Code Here

TOP

Related Classes of mireka.pop.command.QuitCommand

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.