Package mireka.pop.command

Examples of mireka.pop.command.NoopCommand


            new HashMap<String, Command>();
    private ApopCommand apopCommand;

    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));
View Full Code Here

TOP

Related Classes of mireka.pop.command.NoopCommand

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.