1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20 package io.wcm.tooling.commons.packmgr.unpack;
21
22
23
24
25 public final class ContentUnpackerProperties {
26
27 private String[] excludeFiles;
28 private String[] excludeNodes;
29 private String[] excludeProperties;
30 private String[] excludeMixins;
31 private boolean markReplicationActivated;
32 private String[] markReplicationActivatedIncludeNodes;
33 private String dateLastReplicated;
34
35
36
37
38
39 public String[] getExcludeFiles() {
40 return this.excludeFiles;
41 }
42
43
44
45
46 public void setExcludeFiles(String[] excludeFiles) {
47 this.excludeFiles = excludeFiles;
48 }
49
50
51
52
53
54 public String[] getExcludeNodes() {
55 return this.excludeNodes;
56 }
57
58
59
60
61 public void setExcludeNodes(String[] excludeNodes) {
62 this.excludeNodes = excludeNodes;
63 }
64
65
66
67
68
69 public String[] getExcludeProperties() {
70 return this.excludeProperties;
71 }
72
73
74
75
76 public void setExcludeProperties(String[] excludeProperties) {
77 this.excludeProperties = excludeProperties;
78 }
79
80
81
82
83
84 public String[] getExcludeMixins() {
85 return this.excludeMixins;
86 }
87
88
89
90
91 public void setExcludeMixins(String[] excludeMixins) {
92 this.excludeMixins = excludeMixins;
93 }
94
95
96
97
98
99 public boolean isMarkReplicationActivated() {
100 return this.markReplicationActivated;
101 }
102
103
104
105
106
107 public void setMarkReplicationActivated(boolean markReplicationActivated) {
108 this.markReplicationActivated = markReplicationActivated;
109 }
110
111
112
113
114
115 public String[] getMarkReplicationActivatedIncludeNodes() {
116 return this.markReplicationActivatedIncludeNodes;
117 }
118
119
120
121
122 public void setMarkReplicationActivatedIncludeNodes(String[] markReplicationActivatedIncludeNodes) {
123 this.markReplicationActivatedIncludeNodes = markReplicationActivatedIncludeNodes;
124 }
125
126
127
128
129
130
131 public String getDateLastReplicated() {
132 return this.dateLastReplicated;
133 }
134
135
136
137
138
139 public void setDateLastReplicated(String dateLastReplicated) {
140 this.dateLastReplicated = dateLastReplicated;
141 }
142
143 }