View Javadoc
1   // =================== DO NOT EDIT THIS FILE ====================
2   // Generated by Modello 2.4.0,
3   // any modifications will be overwritten.
4   // ==============================================================
5   
6   package org.apache.maven.settings;
7   
8   /**
9    * 
10   *         Root element of the user configuration file.
11   *       
12   * 
13   * @version $Revision$ $Date$
14   */
15  @SuppressWarnings( "all" )
16  public class Settings
17      extends TrackableBase
18      implements java.io.Serializable, java.lang.Cloneable
19  {
20  
21        //--------------------------/
22       //- Class/Member Variables -/
23      //--------------------------/
24  
25      /**
26       * 
27       *             
28       *             The local repository.<br><b>Default value
29       * is:</b> <code>${user.home}/.m2/repository</code>
30       *             
31       *           
32       */
33      private String localRepository;
34  
35      /**
36       * 
37       *             
38       *             Whether Maven should attempt to interact with
39       * the user for input.
40       *             
41       *           
42       */
43      private boolean interactiveMode = true;
44  
45      /**
46       * 
47       *             
48       *             Whether Maven should use the
49       * <code>plugin-registry.xml</code> file to manage plugin
50       * versions.
51       *             
52       *           
53       */
54      private boolean usePluginRegistry = false;
55  
56      /**
57       * 
58       *             
59       *             Indicate whether maven should operate in offline
60       * mode full-time.
61       *             
62       *           
63       */
64      private boolean offline = false;
65  
66      /**
67       * Field proxies.
68       */
69      private java.util.List<Proxy> proxies;
70  
71      /**
72       * Field servers.
73       */
74      private java.util.List<Server> servers;
75  
76      /**
77       * Field mirrors.
78       */
79      private java.util.List<Mirror> mirrors;
80  
81      /**
82       * Field profiles.
83       */
84      private java.util.List<Profile> profiles;
85  
86      /**
87       * Field activeProfiles.
88       */
89      private java.util.List<String> activeProfiles;
90  
91      /**
92       * Field pluginGroups.
93       */
94      private java.util.List<String> pluginGroups;
95  
96      /**
97       * Field modelEncoding.
98       */
99      private String modelEncoding = "UTF-8";
100 
101 
102       //-----------/
103      //- Methods -/
104     //-----------/
105 
106     /**
107      * Method addActiveProfile.
108      * 
109      * @param string a string object.
110      */
111     public void addActiveProfile( String string )
112     {
113         getActiveProfiles().add( string );
114     } //-- void addActiveProfile( String )
115 
116     /**
117      * Method addMirror.
118      * 
119      * @param mirror a mirror object.
120      */
121     public void addMirror( Mirror mirror )
122     {
123         getMirrors().add( mirror );
124     } //-- void addMirror( Mirror )
125 
126     /**
127      * Method addPluginGroup.
128      * 
129      * @param string a string object.
130      */
131     public void addPluginGroup( String string )
132     {
133         getPluginGroups().add( string );
134     } //-- void addPluginGroup( String )
135 
136     /**
137      * Method addProfile.
138      * 
139      * @param profile a profile object.
140      */
141     public void addProfile( Profile profile )
142     {
143         getProfiles().add( profile );
144     } //-- void addProfile( Profile )
145 
146     /**
147      * Method addProxy.
148      * 
149      * @param proxy a proxy object.
150      */
151     public void addProxy( Proxy proxy )
152     {
153         getProxies().add( proxy );
154     } //-- void addProxy( Proxy )
155 
156     /**
157      * Method addServer.
158      * 
159      * @param server a server object.
160      */
161     public void addServer( Server server )
162     {
163         getServers().add( server );
164     } //-- void addServer( Server )
165 
166     /**
167      * Method clone.
168      * 
169      * @return Settings
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     } //-- Settings clone()
233 
234     /**
235      * Method getActiveProfiles.
236      * 
237      * @return List
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     } //-- java.util.List<String> getActiveProfiles()
248 
249     /**
250      * Get the local repository.<br><b>Default value is:</b>
251      * <code>${user.home}/.m2/repository</code>
252      * 
253      * @return String
254      */
255     public String getLocalRepository()
256     {
257         return this.localRepository;
258     } //-- String getLocalRepository()
259 
260     /**
261      * Method getMirrors.
262      * 
263      * @return List
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     } //-- java.util.List<Mirror> getMirrors()
274 
275     /**
276      * Get the modelEncoding field.
277      * 
278      * @return String
279      */
280     public String getModelEncoding()
281     {
282         return this.modelEncoding;
283     } //-- String getModelEncoding()
284 
285     /**
286      * Method getPluginGroups.
287      * 
288      * @return List
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     } //-- java.util.List<String> getPluginGroups()
299 
300     /**
301      * Method getProfiles.
302      * 
303      * @return List
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     } //-- java.util.List<Profile> getProfiles()
314 
315     /**
316      * Method getProxies.
317      * 
318      * @return List
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     } //-- java.util.List<Proxy> getProxies()
329 
330     /**
331      * Method getServers.
332      * 
333      * @return List
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     } //-- java.util.List<Server> getServers()
344 
345     /**
346      * Get whether Maven should attempt to interact with the user
347      * for input.
348      * 
349      * @return boolean
350      */
351     public boolean isInteractiveMode()
352     {
353         return this.interactiveMode;
354     } //-- boolean isInteractiveMode()
355 
356     /**
357      * Get indicate whether maven should operate in offline mode
358      * full-time.
359      * 
360      * @return boolean
361      */
362     public boolean isOffline()
363     {
364         return this.offline;
365     } //-- boolean isOffline()
366 
367     /**
368      * Get whether Maven should use the
369      * <code>plugin-registry.xml</code> file to manage plugin
370      * versions.
371      * 
372      * @return boolean
373      */
374     public boolean isUsePluginRegistry()
375     {
376         return this.usePluginRegistry;
377     } //-- boolean isUsePluginRegistry()
378 
379     /**
380      * Method removeActiveProfile.
381      * 
382      * @param string a string object.
383      */
384     public void removeActiveProfile( String string )
385     {
386         getActiveProfiles().remove( string );
387     } //-- void removeActiveProfile( String )
388 
389     /**
390      * Method removeMirror.
391      * 
392      * @param mirror a mirror object.
393      */
394     public void removeMirror( Mirror mirror )
395     {
396         getMirrors().remove( mirror );
397     } //-- void removeMirror( Mirror )
398 
399     /**
400      * Method removePluginGroup.
401      * 
402      * @param string a string object.
403      */
404     public void removePluginGroup( String string )
405     {
406         getPluginGroups().remove( string );
407     } //-- void removePluginGroup( String )
408 
409     /**
410      * Method removeProfile.
411      * 
412      * @param profile a profile object.
413      */
414     public void removeProfile( Profile profile )
415     {
416         getProfiles().remove( profile );
417     } //-- void removeProfile( Profile )
418 
419     /**
420      * Method removeProxy.
421      * 
422      * @param proxy a proxy object.
423      */
424     public void removeProxy( Proxy proxy )
425     {
426         getProxies().remove( proxy );
427     } //-- void removeProxy( Proxy )
428 
429     /**
430      * Method removeServer.
431      * 
432      * @param server a server object.
433      */
434     public void removeServer( Server server )
435     {
436         getServers().remove( server );
437     } //-- void removeServer( Server )
438 
439     /**
440      * Set list of manually-activated build profiles, specified in
441      * the order in which
442      *             they should be applied.
443      * 
444      * @param activeProfiles a activeProfiles object.
445      */
446     public void setActiveProfiles( java.util.List<String> activeProfiles )
447     {
448         this.activeProfiles = activeProfiles;
449     } //-- void setActiveProfiles( java.util.List )
450 
451     /**
452      * Set whether Maven should attempt to interact with the user
453      * for input.
454      * 
455      * @param interactiveMode a interactiveMode object.
456      */
457     public void setInteractiveMode( boolean interactiveMode )
458     {
459         this.interactiveMode = interactiveMode;
460     } //-- void setInteractiveMode( boolean )
461 
462     /**
463      * Set the local repository.<br><b>Default value is:</b>
464      * <code>${user.home}/.m2/repository</code>
465      * 
466      * @param localRepository a localRepository object.
467      */
468     public void setLocalRepository( String localRepository )
469     {
470         this.localRepository = localRepository;
471     } //-- void setLocalRepository( String )
472 
473     /**
474      * Set configuration of download mirrors for repositories.
475      * 
476      * @param mirrors a mirrors object.
477      */
478     public void setMirrors( java.util.List<Mirror> mirrors )
479     {
480         this.mirrors = mirrors;
481     } //-- void setMirrors( java.util.List )
482 
483     /**
484      * Set the modelEncoding field.
485      * 
486      * @param modelEncoding a modelEncoding object.
487      */
488     public void setModelEncoding( String modelEncoding )
489     {
490         this.modelEncoding = modelEncoding;
491     } //-- void setModelEncoding( String )
492 
493     /**
494      * Set indicate whether maven should operate in offline mode
495      * full-time.
496      * 
497      * @param offline a offline object.
498      */
499     public void setOffline( boolean offline )
500     {
501         this.offline = offline;
502     } //-- void setOffline( boolean )
503 
504     /**
505      * Set list of groupIds to search for a plugin when that plugin
506      *             groupId is not explicitly provided.
507      * 
508      * @param pluginGroups a pluginGroups object.
509      */
510     public void setPluginGroups( java.util.List<String> pluginGroups )
511     {
512         this.pluginGroups = pluginGroups;
513     } //-- void setPluginGroups( java.util.List )
514 
515     /**
516      * Set configuration of build profiles for adjusting the build
517      *             according to environmental parameters.
518      * 
519      * @param profiles a profiles object.
520      */
521     public void setProfiles( java.util.List<Profile> profiles )
522     {
523         this.profiles = profiles;
524     } //-- void setProfiles( java.util.List )
525 
526     /**
527      * Set configuration for different proxy profiles. Multiple
528      * proxy profiles
529      *             might come in handy for anyone working from a
530      * notebook or other
531      *             mobile platform, to enable easy switching of
532      * entire proxy
533      *             configurations by simply specifying the profile
534      * id, again either from
535      *             the command line or from the defaults section
536      * below.
537      * 
538      * @param proxies a proxies object.
539      */
540     public void setProxies( java.util.List<Proxy> proxies )
541     {
542         this.proxies = proxies;
543     } //-- void setProxies( java.util.List )
544 
545     /**
546      * Set configuration of server-specific settings, mainly
547      * authentication
548      *             method. This allows configuration of
549      * authentication on a per-server
550      *             basis.
551      * 
552      * @param servers a servers object.
553      */
554     public void setServers( java.util.List<Server> servers )
555     {
556         this.servers = servers;
557     } //-- void setServers( java.util.List )
558 
559     /**
560      * Set whether Maven should use the
561      * <code>plugin-registry.xml</code> file to manage plugin
562      * versions.
563      * 
564      * @param usePluginRegistry a usePluginRegistry object.
565      */
566     public void setUsePluginRegistry( boolean usePluginRegistry )
567     {
568         this.usePluginRegistry = usePluginRegistry;
569     } //-- void setUsePluginRegistry( boolean )
570 
571     
572             
573     public Boolean getInteractiveMode()
574     {
575         return Boolean.valueOf( isInteractiveMode() );
576     }
577 
578     private Proxy activeProxy;
579 
580     /**
581      * Reset the <code>activeProxy</code> field to <code>null</code>
582      */
583     public void flushActiveProxy()
584     {
585         this.activeProxy = null;
586     }
587 
588     /**
589      * @return the first active proxy
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      * Reset the <code>profileMap</code> field to <code>null</code>
657      */
658     public void flushProfileMap()
659     {
660         this.profileMap = null;
661     }
662 
663     /**
664      * @return a Map of profiles field with <code>Profile#getId()</code> as key
665      * @see org.apache.maven.settings.Profile#getId()
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 }