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

1 2 3

  /external/mockftpserver/MockFtpServer/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)
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));
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);
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));
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);
AppeCommandHandler.java 28 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
42 invocationRecord.set(PATHNAME_KEY, filename);
StorCommandHandler.java 28 * <li>{@link #PATHNAME_KEY} ("pathname") - the pathname of the directory submitted on the invocation (the first command parameter)
42 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));
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);
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));
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);
  /external/mockftpserver/MockFtpServer/src/test/java/org/mockftpserver/stub/command/
StatCommandHandlerTest.java 49 verifyOneDataElement(commandHandler.getInvocation(0), StatCommandHandler.PATHNAME_KEY, null);
68 verifyOneDataElement(commandHandler.getInvocation(0), StatCommandHandler.PATHNAME_KEY, PATHNAME);
87 verifyOneDataElement(commandHandler.getInvocation(0), StatCommandHandler.PATHNAME_KEY, null);

Completed in 150 milliseconds

1 2 3