Home | History | Annotate | Download | only in command

Lines Matching refs:command

16 package org.mockftpserver.core.command;

21 * CommandHandler that encapsulates the sending of the reply when a requested command is not
22 * recognized/supported. Send back a reply code of 502, indicating command not implemented.
24 * Note that this is a "special" CommandHandler, in that it handles any unrecognized command,
25 * rather than an explicit FTP command.
42 * @see org.mockftpserver.core.command.AbstractTrackingCommandHandler#handleCommand(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
44 public void handleCommand(Command command, Session session, InvocationRecord invocationRecord) {
45 LOG.warn("No CommandHandler is defined for command [" + command.getName() + "]");
46 sendReply(session, command.getName());