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

  /external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
UserAccount.java 29 * The <code>username</code> and <code>homeDirectory</code> property must be non-null
30 * and non-empty. The <code>homeDirectory</code> property must also match the name of an existing
65 private String homeDirectory;
85 * @param homeDirectory - the home directory
87 public UserAccount(String username, String password, String homeDirectory) {
90 setHomeDirectory(homeDirectory);
110 return homeDirectory;
113 public void setHomeDirectory(String homeDirectory) {
114 this.homeDirectory = homeDirectory;
    [all...]
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/command/
UserCommandHandlerTest.groovy 68 userAccount.homeDirectory = ''
77 userAccount.homeDirectory = '/abc/def'
99 userAccount = new UserAccount(username: USERNAME, homeDirectory: HOME_DIRECTORY)
PassCommandHandlerTest.groovy 76 userAccount.homeDirectory = ''
85 userAccount.homeDirectory = '/abc/def'
  /external/mockftpserver/MockFtpServer/src/test/groovy/org/mockftpserver/fake/
RunFakeFtpServer.groovy 46 def userAccount = new UserAccount(username: ANONYMOUS, passwordRequiredForLogin: false, homeDirectory: HOME_DIR)
UserAccountTest.groovy 43 assert acct.homeDirectory == HOME_DIR
95 userAccount.homeDirectory = ""
97 userAccount.homeDirectory = "/abc"
FakeFtpServerIntegrationTest.groovy 221 userAccount.homeDirectory = '/'
384 assert ftpClient.storeFile(FILENAME1, inputStream) // relative to homeDirectory

Completed in 939 milliseconds