1 package org.codehaus.plexus.archiver;
2
3 import javax.annotation.CheckForNull;
4
5 import org.codehaus.plexus.components.io.filemappers.FileMapper;
6 import org.codehaus.plexus.components.io.fileselectors.FileSelector;
7 import org.codehaus.plexus.components.io.functions.InputStreamTransformer;
8
9
10
11
12
13
14
15 public interface BaseFileSet {
16
17
18
19
20
21 @CheckForNull
22 String getPrefix();
23
24
25
26
27
28 @CheckForNull
29 String[] getIncludes();
30
31
32
33
34
35 @CheckForNull
36 String[] getExcludes();
37
38
39
40
41
42 boolean isCaseSensitive();
43
44
45
46
47
48 boolean isUsingDefaultExcludes();
49
50
51
52
53 boolean isIncludingEmptyDirectories();
54
55
56
57
58
59 @CheckForNull
60 FileSelector[] getFileSelectors();
61
62
63
64
65
66
67 InputStreamTransformer getStreamTransformer();
68
69
70
71
72
73 @CheckForNull
74 FileMapper[] getFileMappers();
75 }