1 45 46 package com.enterprisedt.net.ftp; 47 48 57 public class FTPTransferType { 58 59 62 private static String cvsId = "@(#)$Id: FTPTransferType.java,v 1.1.1.1 2005/06/23 15:22:58 smontoro Exp $"; 63 64 67 public static FTPTransferType ASCII = new FTPTransferType(); 68 69 72 public static FTPTransferType BINARY = new FTPTransferType(); 73 74 77 static String ASCII_CHAR = "A"; 78 79 82 static String BINARY_CHAR = "I"; 83 84 87 private FTPTransferType() { 88 } 89 } 90 | Popular Tags |