Searched refs:code (Results 301 - 325 of 2332) sorted by relevance

<<11121314151617181920>>

/external/mockftpserver/tags/1.1/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/1.2/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/1.2.1/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/1.2.2/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/1.2.3/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/1.2.4/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/2.0/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.0-rc1/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.0-rc1/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
62 // Only use dynamic reply code if the replyCode property was NOT explicitly set
64 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
65 sendReply(session, code, replyMessageKey, replyText, new String[] { status });
/external/mockftpserver/tags/2.0-rc3/MockFtpServer/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.0.1/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.0.2/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.1/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.2/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.3/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);
/external/mockftpserver/tags/2.4/src/main/java/org/mockftpserver/stub/command/
H A DStatCommandHandler.java26 * along with a reply code of 211 if no pathname parameter is specified or 213 if a
28 * the <code>status</code> property.
57 // Only use dynamic reply code if the replyCode property was NOT explicitly set
59 int code = (pathname == null) ? ReplyCodes.STAT_SYSTEM_OK : ReplyCodes.STAT_FILE_OK;
60 sendReply(session, code, replyMessageKey, replyText, new String[]{status});
H A DUserCommandHandler.java25 * CommandHandler for the USER command. The <code>passwordRequired</code> property defaults to true,
56 // Only use dynamic reply code if the replyCode property was NOT explicitly set
58 int code = (passwordRequired) ? ReplyCodes.USER_NEED_PASSWORD_OK : ReplyCodes.USER_LOGGED_IN_OK;
59 sendReply(session, code, replyMessageKey, replyText, null);

Completed in 2259 milliseconds

<<11121314151617181920>>