OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RENAME_FROM
(Results
1 - 5
of
5
) sorted by null
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/core/session/
SessionKeys.java
26
public static final String
RENAME_FROM
= "renameFrom";
/external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
RnfrCommandHandlerTest.groovy
41
assert session.getAttribute(SessionKeys.
RENAME_FROM
) == FILE
49
assert session.getAttribute(SessionKeys.
RENAME_FROM
) == FILE
55
assert session.getAttribute(SessionKeys.
RENAME_FROM
) == null
62
assert session.getAttribute(SessionKeys.
RENAME_FROM
) == DIR
RntoCommandHandlerTest.groovy
59
session.removeAttribute(SessionKeys.
RENAME_FROM
)
163
session.setAttribute(SessionKeys.
RENAME_FROM
, renameFrom)
167
assert session.getAttribute(SessionKeys.
RENAME_FROM
) == value
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
RntoCommandHandler.java
44
String fromPath = (String) getRequiredSessionAttribute(session, SessionKeys.
RENAME_FROM
);
57
session.removeAttribute(SessionKeys.
RENAME_FROM
);
RnfrCommandHandler.java
49
session.setAttribute(SessionKeys.
RENAME_FROM
, fromPath);
Completed in 1127 milliseconds