HomeSort by relevance Sort by last modified time
    Searched defs:PATHNAME_KEY (Results 1 - 25 of 27) sorted by null

1 2

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
AbstractStorCommandHandler.java 36 public static final String PATHNAME_KEY = "pathname";
CwdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
DeleCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file name submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
RmdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
RnfrCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
RntoCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
SmntCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
ListCommandHandler.java 53 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
63 public static final String PATHNAME_KEY = "pathname";
71 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
MkdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
37 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, pathname);
NlstCommandHandler.java 31 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
40 public static final String PATHNAME_KEY = "pathname";
48 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
StatCommandHandler.java 32 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
42 public static final String PATHNAME_KEY = "pathname";
55 invocationRecord.set(PATHNAME_KEY, pathname);
FileRetrCommandHandler.java 43 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
51 public static final String PATHNAME_KEY = "pathname";
77 invocationRecord.set(PATHNAME_KEY, command.getRequiredParameter(0));
RetrCommandHandler.java 33 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
41 public static final String PATHNAME_KEY = "pathname";
78 invocationRecord.set(PATHNAME_KEY, filename);
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
CwdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
DeleCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file name submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
RmdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
RnfrCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
RntoCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the file submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
SmntCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
51 invocationRecord.set(PATHNAME_KEY, command.getRequiredString(0));
AppeCommandHandler.java 30 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
40 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, filename);
ListCommandHandler.java 36 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
48 public static final String PATHNAME_KEY = "pathname";
56 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
MkdCommandHandler.java 29 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
38 public static final String PATHNAME_KEY = "pathname";
52 invocationRecord.set(PATHNAME_KEY, pathname);
NlstCommandHandler.java 31 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
41 public static final String PATHNAME_KEY = "pathname";
49 invocationRecord.set(PATHNAME_KEY, command.getOptionalString(0));
StatCommandHandler.java 32 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory (or file) submitted on the
44 public static final String PATHNAME_KEY = "pathname";
60 invocationRecord.set(PATHNAME_KEY, pathname);
StorCommandHandler.java 30 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
40 public static final String PATHNAME_KEY = "pathname";
50 invocationRecord.set(PATHNAME_KEY, filename);

Completed in 104 milliseconds

1 2