Searched defs:userAccount (Results 1 - 24 of 24) sorted by path

/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
258 * @param userAccount - the UserAccount to add
260 public void addUserAccount(UserAccount userAccount) { argument
261 userAccounts.put(userAccount.getUsername(), userAccount);
271 UserAccount userAccount = (UserAccount) userAccountList.get(i);
272 userAccounts.put(userAccount
[all...]
/external/mockftpserver/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
254 * @param userAccount - the UserAccount to add
256 public void addUserAccount(UserAccount userAccount) { argument
257 userAccounts.put(userAccount.getUsername(), userAccount);
267 UserAccount userAccount = (UserAccount) userAccountList.get(i);
268 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java82 * UserAccount userAccount = new UserAccount();
83 * userAccount.setUsername("joe");
84 * userAccount.setPassword("joe123");
85 * userAccount.setHomeDirectory("c:\\");
86 * List userAccounts = Collections.singletonList(userAccount);
207 * @param userAccount - the UserAccount to add
209 public void addUserAccount(UserAccount userAccount) { argument
210 userAccounts.put(userAccount.getUsername(), userAccount);
220 UserAccount userAccount
[all...]
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java285 UserAccount userAccount = getUserAccount(session);
287 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
298 UserAccount userAccount = getUserAccount(session);
300 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
311 UserAccount userAccount = getUserAccount(session);
313 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
372 UserAccount userAccount = serverConfiguration.getUserAccount(username);
373 if (userAccount == null || !userAccount.isValid()) {
374 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
398 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
254 * @param userAccount - the UserAccount to add
256 public void addUserAccount(UserAccount userAccount) { argument
257 userAccounts.put(userAccount.getUsername(), userAccount);
267 UserAccount userAccount = (UserAccount) userAccountList.get(i);
268 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
254 * @param userAccount - the UserAccount to add
256 public void addUserAccount(UserAccount userAccount) { argument
257 userAccounts.put(userAccount.getUsername(), userAccount);
267 UserAccount userAccount = (UserAccount) userAccountList.get(i);
268 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
254 * @param userAccount - the UserAccount to add
256 public void addUserAccount(UserAccount userAccount) { argument
257 userAccounts.put(userAccount.getUsername(), userAccount);
267 UserAccount userAccount = (UserAccount) userAccountList.get(i);
268 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
254 * @param userAccount - the UserAccount to add
256 public void addUserAccount(UserAccount userAccount) { argument
257 userAccounts.put(userAccount.getUsername(), userAccount);
267 UserAccount userAccount = (UserAccount) userAccountList.get(i);
268 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
256 * @param userAccount - the UserAccount to add
258 public void addUserAccount(UserAccount userAccount) { argument
259 userAccounts.put(userAccount.getUsername(), userAccount);
269 UserAccount userAccount = (UserAccount) userAccountList.get(i);
270 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
256 * @param userAccount - the UserAccount to add
258 public void addUserAccount(UserAccount userAccount) { argument
259 userAccounts.put(userAccount.getUsername(), userAccount);
269 UserAccount userAccount = (UserAccount) userAccountList.get(i);
270 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
258 * @param userAccount - the UserAccount to add
260 public void addUserAccount(UserAccount userAccount) { argument
261 userAccounts.put(userAccount.getUsername(), userAccount);
271 UserAccount userAccount = (UserAccount) userAccountList.get(i);
272 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
258 * @param userAccount - the UserAccount to add
260 public void addUserAccount(UserAccount userAccount) { argument
261 userAccounts.put(userAccount.getUsername(), userAccount);
271 UserAccount userAccount = (UserAccount) userAccountList.get(i);
272 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/
H A DFakeFtpServer.java67 * UserAccount userAccount = new UserAccount("joe", "joe123", "c:\\");
68 * fakeFtpServer.addUserAccounts(userAccount);
106 * UserAccount userAccount = new UserAccount("joe", "joe123", "/");
107 * fakeFtpServer.addUserAccounts(userAccount);
258 * @param userAccount - the UserAccount to add
260 public void addUserAccount(UserAccount userAccount) { argument
261 userAccounts.put(userAccount.getUsername(), userAccount);
271 UserAccount userAccount = (UserAccount) userAccountList.get(i);
272 userAccounts.put(userAccount
[all...]
/external/mockftpserver/tags/2.5/src/main/java/org/mockftpserver/fake/command/
H A DAbstractFakeCommandHandler.java276 UserAccount userAccount = getUserAccount(session);
278 verifyFileSystemCondition(userAccount.canExecute(entry), path, "filesystem.cannotExecute");
289 UserAccount userAccount = getUserAccount(session);
291 verifyFileSystemCondition(userAccount.canWrite(entry), path, "filesystem.cannotWrite");
302 UserAccount userAccount = getUserAccount(session);
304 verifyFileSystemCondition(userAccount.canRead(entry), path, "filesystem.cannotRead");
365 UserAccount userAccount = serverConfiguration.getUserAccount(username);
366 if (userAccount == null || !userAccount.isValid()) {
367 LOG.error("UserAccount missing or not valid for username [" + username + "]: " + userAccount);
391 login(UserAccount userAccount, Session session, int replyCode, String replyMessageKey) argument
[all...]

Completed in 481 milliseconds