OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getRequiredString
(Results
1 - 22
of
22
) sorted by null
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
AcctCommandHandler.java
51
invocationRecord.set(ACCOUNT_KEY, command.
getRequiredString
(0));
CwdCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
DeleCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
MkdCommandHandler.java
51
String pathname = command.
getRequiredString
(0);
ModeCommandHandler.java
51
invocationRecord.set(MODE_KEY, command.
getRequiredString
(0));
PassCommandHandler.java
51
invocationRecord.set(PASSWORD_KEY, command.
getRequiredString
(0));
RestCommandHandler.java
51
String marker = command.
getRequiredString
(0);
RmdCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
RnfrCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
RntoCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
SiteCommandHandler.java
51
invocationRecord.set(PARAMETERS_KEY, command.
getRequiredString
(0));
SmntCommandHandler.java
51
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
StruCommandHandler.java
51
invocationRecord.set(FILE_STRUCTURE_KEY, command.
getRequiredString
(0));
UserCommandHandler.java
59
usernames.add(command.
getRequiredString
(0));
60
invocationRecord.set(USERNAME_KEY, command.
getRequiredString
(0));
AppeCommandHandler.java
49
String filename = command.
getRequiredString
(0);
StorCommandHandler.java
49
String filename = command.
getRequiredString
(0);
TypeCommandHandler.java
56
String type = command.
getRequiredString
(0);
AlloCommandHandler.java
59
String parametersString = command.
getRequiredString
(0);
FileRetrCommandHandler.java
80
invocationRecord.set(PATHNAME_KEY, command.
getRequiredString
(0));
RetrCommandHandler.java
76
String filename = command.
getRequiredString
(0);
/external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/stub/command/
CommandTest.java
80
* Test the
getRequiredString
method
84
assertEquals("123", "123", command.
getRequiredString
(0));
85
assertEquals("456", "456", command.
getRequiredString
(1));
89
* Test the
getRequiredString
method, when the index is not valid
94
command.
getRequiredString
(2);
/external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/core/command/
Command.java
67
public String
getRequiredString
(int index) {
Completed in 126 milliseconds