Home | History | Annotate | Download | only in command

Lines Matching refs:command

16 package org.mockftpserver.stub.command;

18 import org.mockftpserver.core.command.Command;
19 import org.mockftpserver.core.command.CommandHandler;
20 import org.mockftpserver.core.command.InvocationRecord;
21 import org.mockftpserver.core.command.ReplyCodes;
28 * CommandHandler for the ALLO (Allocate) command. Send back a reply code of 200.
33 * on the invocation (the first command parameter)
35 * on the invocation (the second command parameter)
55 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
57 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
58 String parametersString = command.getRequiredParameter(0);