-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileError.java
More file actions
38 lines (34 loc) · 720 Bytes
/
FileError.java
File metadata and controls
38 lines (34 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package util;
import java.io.File;
import org.apache.commons.net.ftp.FTPFile;
public class FileError {
private FTPFile ftpFile;
private File file;
private String info;
public FileError(FTPFile ftpFile,String info) {
this.ftpFile=ftpFile;
this.info=info;
}
public FileError(File File,String info) {
this.file=File;
this.info=info;
}
public FTPFile getFtpFile() {
return ftpFile;
}
public void setFtpFile(FTPFile ftpFile) {
this.ftpFile = ftpFile;
}
public File getFile() {
return file;
}
public void setFile(File file) {
this.file = file;
}
public String getInfo() {
return info;
}
public void setInfo(String info) {
this.info = info;
}
}