1
2
3
4
5
6 package org.apache.maven.settings;
7
8
9
10
11
12
13
14
15 @SuppressWarnings( "all" )
16 public class Settings
17 extends TrackableBase
18 implements java.io.Serializable, java.lang.Cloneable
19 {
20
21
22
23
24
25
26
27
28
29
30
31
32
33 private String localRepository;
34
35
36
37
38
39
40
41
42
43 private boolean interactiveMode = true;
44
45
46
47
48
49
50
51
52
53
54 private boolean usePluginRegistry = false;
55
56
57
58
59
60
61
62
63
64 private boolean offline = false;
65
66
67
68
69 private java.util.List<Proxy> proxies;
70
71
72
73
74 private java.util.List<Server> servers;
75
76
77
78
79 private java.util.List<Mirror> mirrors;
80
81
82
83
84 private java.util.List<Profile> profiles;
85
86
87
88
89 private java.util.List<String> activeProfiles;
90
91
92
93
94 private java.util.List<String> pluginGroups;
95
96
97
98
99 private String modelEncoding = "UTF-8";
100
101
102
103
104
105
106
107
108
109
110
111 public void addActiveProfile( String string )
112 {
113 getActiveProfiles().add( string );
114 }
115
116
117
118
119
120
121 public void addMirror( Mirror mirror )
122 {
123 getMirrors().add( mirror );
124 }
125
126
127
128
129
130
131 public void addPluginGroup( String string )
132 {
133 getPluginGroups().add( string );
134 }
135
136
137
138
139
140
141 public void addProfile( Profile profile )
142 {
143 getProfiles().add( profile );
144 }
145
146
147
148
149
150
151 public void addProxy( Proxy proxy )
152 {
153 getProxies().add( proxy );
154 }
155
156
157
158
159
160
161 public void addServer( Server server )
162 {
163 getServers().add( server );
164 }
165
166
167
168
169
170
171 public Settings clone()
172 {
173 try
174 {
175 Settings copy = (Settings) super.clone();
176
177 if ( this.proxies != null )
178 {
179 copy.proxies = new java.util.ArrayList<Proxy>();
180 for ( Proxy item : this.proxies )
181 {
182 copy.proxies.add( ( (Proxy) item).clone() );
183 }
184 }
185
186 if ( this.servers != null )
187 {
188 copy.servers = new java.util.ArrayList<Server>();
189 for ( Server item : this.servers )
190 {
191 copy.servers.add( ( (Server) item).clone() );
192 }
193 }
194
195 if ( this.mirrors != null )
196 {
197 copy.mirrors = new java.util.ArrayList<Mirror>();
198 for ( Mirror item : this.mirrors )
199 {
200 copy.mirrors.add( ( (Mirror) item).clone() );
201 }
202 }
203
204 if ( this.profiles != null )
205 {
206 copy.profiles = new java.util.ArrayList<Profile>();
207 for ( Profile item : this.profiles )
208 {
209 copy.profiles.add( ( (Profile) item).clone() );
210 }
211 }
212
213 if ( this.activeProfiles != null )
214 {
215 copy.activeProfiles = new java.util.ArrayList<String>();
216 copy.activeProfiles.addAll( this.activeProfiles );
217 }
218
219 if ( this.pluginGroups != null )
220 {
221 copy.pluginGroups = new java.util.ArrayList<String>();
222 copy.pluginGroups.addAll( this.pluginGroups );
223 }
224
225 return copy;
226 }
227 catch ( java.lang.Exception ex )
228 {
229 throw (java.lang.RuntimeException) new java.lang.UnsupportedOperationException( getClass().getName()
230 + " does not support clone()" ).initCause( ex );
231 }
232 }
233
234
235
236
237
238
239 public java.util.List<String> getActiveProfiles()
240 {
241 if ( this.activeProfiles == null )
242 {
243 this.activeProfiles = new java.util.ArrayList<String>();
244 }
245
246 return this.activeProfiles;
247 }
248
249
250
251
252
253
254
255 public String getLocalRepository()
256 {
257 return this.localRepository;
258 }
259
260
261
262
263
264
265 public java.util.List<Mirror> getMirrors()
266 {
267 if ( this.mirrors == null )
268 {
269 this.mirrors = new java.util.ArrayList<Mirror>();
270 }
271
272 return this.mirrors;
273 }
274
275
276
277
278
279
280 public String getModelEncoding()
281 {
282 return this.modelEncoding;
283 }
284
285
286
287
288
289
290 public java.util.List<String> getPluginGroups()
291 {
292 if ( this.pluginGroups == null )
293 {
294 this.pluginGroups = new java.util.ArrayList<String>();
295 }
296
297 return this.pluginGroups;
298 }
299
300
301
302
303
304
305 public java.util.List<Profile> getProfiles()
306 {
307 if ( this.profiles == null )
308 {
309 this.profiles = new java.util.ArrayList<Profile>();
310 }
311
312 return this.profiles;
313 }
314
315
316
317
318
319
320 public java.util.List<Proxy> getProxies()
321 {
322 if ( this.proxies == null )
323 {
324 this.proxies = new java.util.ArrayList<Proxy>();
325 }
326
327 return this.proxies;
328 }
329
330
331
332
333
334
335 public java.util.List<Server> getServers()
336 {
337 if ( this.servers == null )
338 {
339 this.servers = new java.util.ArrayList<Server>();
340 }
341
342 return this.servers;
343 }
344
345
346
347
348
349
350
351 public boolean isInteractiveMode()
352 {
353 return this.interactiveMode;
354 }
355
356
357
358
359
360
361
362 public boolean isOffline()
363 {
364 return this.offline;
365 }
366
367
368
369
370
371
372
373
374 public boolean isUsePluginRegistry()
375 {
376 return this.usePluginRegistry;
377 }
378
379
380
381
382
383
384 public void removeActiveProfile( String string )
385 {
386 getActiveProfiles().remove( string );
387 }
388
389
390
391
392
393
394 public void removeMirror( Mirror mirror )
395 {
396 getMirrors().remove( mirror );
397 }
398
399
400
401
402
403
404 public void removePluginGroup( String string )
405 {
406 getPluginGroups().remove( string );
407 }
408
409
410
411
412
413
414 public void removeProfile( Profile profile )
415 {
416 getProfiles().remove( profile );
417 }
418
419
420
421
422
423
424 public void removeProxy( Proxy proxy )
425 {
426 getProxies().remove( proxy );
427 }
428
429
430
431
432
433
434 public void removeServer( Server server )
435 {
436 getServers().remove( server );
437 }
438
439
440
441
442
443
444
445
446 public void setActiveProfiles( java.util.List<String> activeProfiles )
447 {
448 this.activeProfiles = activeProfiles;
449 }
450
451
452
453
454
455
456
457 public void setInteractiveMode( boolean interactiveMode )
458 {
459 this.interactiveMode = interactiveMode;
460 }
461
462
463
464
465
466
467
468 public void setLocalRepository( String localRepository )
469 {
470 this.localRepository = localRepository;
471 }
472
473
474
475
476
477
478 public void setMirrors( java.util.List<Mirror> mirrors )
479 {
480 this.mirrors = mirrors;
481 }
482
483
484
485
486
487
488 public void setModelEncoding( String modelEncoding )
489 {
490 this.modelEncoding = modelEncoding;
491 }
492
493
494
495
496
497
498
499 public void setOffline( boolean offline )
500 {
501 this.offline = offline;
502 }
503
504
505
506
507
508
509
510 public void setPluginGroups( java.util.List<String> pluginGroups )
511 {
512 this.pluginGroups = pluginGroups;
513 }
514
515
516
517
518
519
520
521 public void setProfiles( java.util.List<Profile> profiles )
522 {
523 this.profiles = profiles;
524 }
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540 public void setProxies( java.util.List<Proxy> proxies )
541 {
542 this.proxies = proxies;
543 }
544
545
546
547
548
549
550
551
552
553
554 public void setServers( java.util.List<Server> servers )
555 {
556 this.servers = servers;
557 }
558
559
560
561
562
563
564
565
566 public void setUsePluginRegistry( boolean usePluginRegistry )
567 {
568 this.usePluginRegistry = usePluginRegistry;
569 }
570
571
572
573 public Boolean getInteractiveMode()
574 {
575 return Boolean.valueOf( isInteractiveMode() );
576 }
577
578 private Proxy activeProxy;
579
580
581
582
583 public void flushActiveProxy()
584 {
585 this.activeProxy = null;
586 }
587
588
589
590
591 public synchronized Proxy getActiveProxy()
592 {
593 if ( activeProxy == null )
594 {
595 java.util.List<Proxy> proxies = getProxies();
596 if ( proxies != null && !proxies.isEmpty() )
597 {
598 for ( Proxy proxy : proxies )
599 {
600 if ( proxy.isActive() )
601 {
602 activeProxy = proxy;
603 break;
604 }
605 }
606 }
607 }
608
609 return activeProxy;
610 }
611
612 public Server getServer( String serverId )
613 {
614 Server match = null;
615
616 java.util.List<Server> servers = getServers();
617 if ( servers != null && serverId != null )
618 {
619 for ( Server server : servers )
620 {
621 if ( serverId.equals( server.getId() ) )
622 {
623 match = server;
624 break;
625 }
626 }
627 }
628
629 return match;
630 }
631
632 @Deprecated
633 public Mirror getMirrorOf( String repositoryId )
634 {
635 Mirror match = null;
636
637 java.util.List<Mirror> mirrors = getMirrors();
638 if ( mirrors != null && repositoryId != null )
639 {
640 for ( Mirror mirror : mirrors )
641 {
642 if ( repositoryId.equals( mirror.getMirrorOf() ) )
643 {
644 match = mirror;
645 break;
646 }
647 }
648 }
649
650 return match;
651 }
652
653 private java.util.Map<String, Profile> profileMap;
654
655
656
657
658 public void flushProfileMap()
659 {
660 this.profileMap = null;
661 }
662
663
664
665
666
667 public java.util.Map<String, Profile> getProfilesAsMap()
668 {
669 if ( profileMap == null )
670 {
671 profileMap = new java.util.LinkedHashMap<String, Profile>();
672
673 if ( getProfiles() != null )
674 {
675 for ( Profile profile : getProfiles() )
676 {
677 profileMap.put( profile.getId(), profile );
678 }
679 }
680 }
681
682 return profileMap;
683 }
684
685
686 }