1 39 40 package com.enterprisedt.net.ftp; 41 42 48 public class FTPReply { 49 50 53 private static String cvsId = "@(#)$Id: FTPReply.java,v 1.1.1.1 2005/06/23 15:23:01 smontoro Exp $"; 54 55 58 private String replyCode; 59 60 63 private String replyText; 64 65 66 73 FTPReply(String replyCode, String replyText) { 74 this.replyCode = replyCode; 75 this.replyText = replyText; 76 } 77 78 83 public String getReplyCode() { 84 return replyCode; 85 } 86 87 92 public String getReplyText() { 93 return replyText; 94 } 95 96 } 97 | Popular Tags |