1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.kuali.common.util;
17
18 import java.io.File;
19 import java.util.List;
20
21 @Deprecated
22 public class DirectoryDiff {
23
24
25 File dir1;
26 File dir2;
27
28
29 List<String> both;
30 List<String> dir1Only;
31 List<String> dir2Only;
32
33 public DirectoryDiff() {
34 this(null, null);
35 }
36
37 public DirectoryDiff(File dir1, File dir2) {
38 super();
39 this.dir1 = dir1;
40 this.dir2 = dir2;
41 }
42
43 public List<String> getDir1Only() {
44 return dir1Only;
45 }
46
47 public void setDir1Only(List<String> dir1Only) {
48 this.dir1Only = dir1Only;
49 }
50
51 public List<String> getDir2Only() {
52 return dir2Only;
53 }
54
55 public void setDir2Only(List<String> dir2Only) {
56 this.dir2Only = dir2Only;
57 }
58
59 public List<String> getBoth() {
60 return both;
61 }
62
63 public void setBoth(List<String> both) {
64 this.both = both;
65 }
66
67 public File getDir1() {
68 return dir1;
69 }
70
71 public void setDir1(File dir1) {
72 this.dir1 = dir1;
73 }
74
75 public File getDir2() {
76 return dir2;
77 }
78
79 public void setDir2(File dir2) {
80 this.dir2 = dir2;
81 }
82
83 }