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;
25 * CommandHandler for the TYPE command. Send back a reply code of 200.
30 * invocation, which is a String[2] containing the first two command parameter values.
48 * @see org.mockftpserver.core.command.CommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session)
50 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
51 LOG.debug("Processing TYPE: " + command);
52 String type = command.getRequiredParameter(0);
53 String format = command.getOptionalString(1);