Back to project page AndroIUT.
The source code is released under:
GNU General Public License
If you think the Android project AndroIUT listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.iutdijon.androiut2.ftp.data; /*w ww . java 2 s . c om*/ /** * Enum?ration de la liste des commandes support?es par le client FTP int?gr? * @author Morgan Funtowicz * */ public final class FTPCommand { public static final int FTP_CD = 1 << 0; public static final int FTP_LIST = 1 << 1; public static final int FTP_GET = 1 << 2; public static final int FTP_PUT = 1 << 3; public static final int FTP_DELETE = 1 << 4; public static final int FTP_LOGIN = 1 << 5; public static final int FTP_LOGOUT = 1 << 6; }