HomeSort by relevance Sort by last modified time
    Searched refs:directoryListing (Results 1 - 5 of 5) sorted by null

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
ListCommandHandler.java 27 * returned directory listing by setting the <code>directoryListing</code> property.
35 * Here is an example value for <code>directoryListing</code> when the <code>SystCommandHandler</code>
43 * And here is an example value for <code>directoryListing</code> when the <code>SystCommandHandler</code>
65 private String directoryListing = "";
78 session.sendData(directoryListing.getBytes(), directoryListing.length());
82 * Set the contents of the directoryListing to send back on the data connection for this command.
85 * @param directoryListing - the directoryListing to set
87 public void setDirectoryListing(String directoryListing) {
    [all...]
NlstCommandHandler.java 27 * returned directory listing by setting the <code>directoryListing</code> property.
42 private String directoryListing = "";
55 session.sendData(directoryListing.getBytes(), directoryListing.length());
59 * Set the contents of the directoryListing to send back on the data connection for this command.
62 * @param directoryListing - the directoryListing to set
64 public void setDirectoryListing(String directoryListing) {
65 this.directoryListing = directoryListing.trim();
    [all...]
  /external/mockftpserver/branches/1.x_Branch/src/main/java/org/mockftpserver/stub/command/
ListCommandHandler.java 27 * returned directory listing by setting the <code>directoryListing</code> property.
50 private String directoryListing = "";
63 session.sendData(directoryListing.getBytes(), directoryListing.length());
67 * Set the contents of the directoryListing to send back on the data connection for this command.
69 * @param directoryListing - the directoryListing to set
71 public void setDirectoryListing(String directoryListing) {
72 this.directoryListing = directoryListing.trim();
    [all...]
NlstCommandHandler.java 27 * returned directory listing by setting the <code>directoryListing</code> property.
43 private String directoryListing = "";
56 session.sendData(directoryListing.getBytes(), directoryListing.length());
60 * Set the contents of the directoryListing to send back on the data connection for this command.
62 * @param directoryListing - the directoryListing to set
64 public void setDirectoryListing(String directoryListing) {
65 this.directoryListing = directoryListing.trim();
    [all...]
  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
NlstCommandHandler.java 60 String directoryListing = StringUtil.join(names, endOfLine());
61 directoryListing += directoryListing.length() > 0 ? endOfLine() : "";
64 session.sendData(directoryListing.getBytes(), directoryListing.length());

Completed in 237 milliseconds