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 HELP command. By default, return an empty help message,
31 * <li>{@link #COMMAND_NAME_KEY} ("commandName") - the command name optionally submitted on
32 * the invocation (the first command parameter). May be null.
52 * @see org.mockftpserver.core.command.AbstractTrackingCommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
54 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
55 invocationRecord.set(COMMAND_NAME_KEY, command.getOptionalString(0));
60 * Set the help message String to be returned by this command