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;
24 * CommandHandler for the ACCT command. Handler logic:
27 * <li>If this command was not preceded by a valid USER command, then reply with 503</li>
36 protected void handle(Command command, Session session) {
37 String accountName = command.getRequiredParameter(0);