1
2
3
4
5 package org.apache.maven.api.plugin.descriptor;
6
7 import java.io.Serializable;
8 import java.util.Collections;
9 import java.util.HashMap;
10 import java.util.Map;
11 import java.util.Set;
12 import org.apache.maven.api.annotations.Experimental;
13 import org.apache.maven.api.annotations.Generated;
14 import org.apache.maven.api.annotations.Immutable;
15 import org.apache.maven.api.annotations.Nonnull;
16 import org.apache.maven.api.annotations.NotThreadSafe;
17 import org.apache.maven.api.annotations.ThreadSafe;
18
19
20
21
22 @Experimental
23 @Generated @ThreadSafe @Immutable
24 public class Resolution
25 implements Serializable
26 {
27
28
29
30 final String field;
31
32
33
34 final String pathScope;
35
36
37
38 final String requestType;
39
40
41
42
43
44 protected Resolution(Builder builder) {
45 this.field = builder.field != null ? builder.field : (builder.base != null ? builder.base.field : null);
46 this.pathScope = builder.pathScope != null ? builder.pathScope : (builder.base != null ? builder.base.pathScope : null);
47 this.requestType = builder.requestType != null ? builder.requestType : (builder.base != null ? builder.base.requestType : null);
48 }
49
50
51
52
53
54
55 public String getField() {
56 return this.field;
57 }
58
59
60
61
62
63
64 public String getPathScope() {
65 return this.pathScope;
66 }
67
68
69
70
71
72
73 public String getRequestType() {
74 return this.requestType;
75 }
76
77
78
79
80
81
82 @Nonnull
83 public Builder with() {
84 return newBuilder(this);
85 }
86
87
88
89
90
91
92 @Nonnull
93 public Resolution withField(String field) {
94 return newBuilder(this, true).field(field).build();
95 }
96
97
98
99
100
101
102 @Nonnull
103 public Resolution withPathScope(String pathScope) {
104 return newBuilder(this, true).pathScope(pathScope).build();
105 }
106
107
108
109
110
111
112 @Nonnull
113 public Resolution withRequestType(String requestType) {
114 return newBuilder(this, true).requestType(requestType).build();
115 }
116
117
118
119
120
121
122
123
124 @Nonnull
125 public static Resolution newInstance() {
126 return newInstance(true);
127 }
128
129
130
131
132
133
134
135
136 @Nonnull
137 public static Resolution newInstance(boolean withDefaults) {
138 return newBuilder(withDefaults).build();
139 }
140
141
142
143
144
145
146
147
148 @Nonnull
149 public static Builder newBuilder() {
150 return newBuilder(true);
151 }
152
153
154
155
156
157
158
159 @Nonnull
160 public static Builder newBuilder(boolean withDefaults) {
161 return new Builder(withDefaults);
162 }
163
164
165
166
167
168
169
170
171 @Nonnull
172 public static Builder newBuilder(Resolution from) {
173 return newBuilder(from, false);
174 }
175
176
177
178
179
180
181
182
183 @Nonnull
184 public static Builder newBuilder(Resolution from, boolean forceCopy) {
185 return new Builder(from, forceCopy);
186 }
187
188
189
190
191
192
193 @NotThreadSafe
194 public static class Builder
195 {
196 Resolution base;
197 String field;
198 String pathScope;
199 String requestType;
200
201 protected Builder(boolean withDefaults) {
202 if (withDefaults) {
203 }
204 }
205
206 protected Builder(Resolution base, boolean forceCopy) {
207 if (forceCopy) {
208 this.field = base.field;
209 this.pathScope = base.pathScope;
210 this.requestType = base.requestType;
211 } else {
212 this.base = base;
213 }
214 }
215
216 @Nonnull
217 public Builder field(String field) {
218 this.field = field;
219 return this;
220 }
221
222 @Nonnull
223 public Builder pathScope(String pathScope) {
224 this.pathScope = pathScope;
225 return this;
226 }
227
228 @Nonnull
229 public Builder requestType(String requestType) {
230 this.requestType = requestType;
231 return this;
232 }
233
234
235 @Nonnull
236 public Resolution build() {
237
238 if (base != null
239 && (field == null || field == base.field)
240 && (pathScope == null || pathScope == base.pathScope)
241 && (requestType == null || requestType == base.requestType)
242 ) {
243 return base;
244 }
245 return new Resolution(this);
246 }
247 }
248
249 }