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;
25 * CommandHandler for the RETR (Retrieve) command. Return the configured file contents on the data
33 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
74 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#beforeProcessData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
76 protected void beforeProcessData(Command command, Session session, InvocationRecord invocationRecord) throws Exception {
77 String filename = command.getRequiredParameter(0);
82 * @see org.mockftpserver.stub.command.AbstractStubDataCommandHandler#processData(org.mockftpserver.core.command.Command, org.mockftpserver.core.session.Session, org.mockftpserver.core.command.InvocationRecord)
84 protected void processData(Command command, Session session, InvocationRecord invocationRecord) {
90 * Set the file contents to return from subsequent command invocations
102 * Set the file contents to return from subsequent command invocations