Home | History | Annotate | Download | only in command

Lines Matching refs:command

16 package org.mockftpserver.fake.command;

18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.ReplyCodes;
25 * CommandHandler for the PASS command. Handler logic:
28 * <li>If this command was not preceded by a valid USER command, then reply with 503</li>
39 protected void handle(Command command, Session session) {
40 String password = command.getRequiredParameter(0);