View Javadoc

1   /*
2    =================== DO NOT EDIT THIS FILE ====================
3    Generated by Modello 1.4.1 on 2011-05-07 21:20:49,
4    any modifications will be overwritten.
5    ==============================================================
6    */
7   
8   package com.soebes.maven.plugins.mlv.model;
9   
10  /**
11   * 
12   * 	        	The Licenses file defines the three categories which
13   * are
14   * 		        used to categorize the different licenses of the
15   * artifacts.
16   * 			
17   * 
18   * @version $Revision$ $Date$
19   */
20  @SuppressWarnings( "all" )
21  public class LicensesContainer
22      implements java.io.Serializable
23  {
24  
25        //--------------------------/
26       //- Class/Member Variables -/
27      //--------------------------/
28  
29      /**
30       * 
31       * 						The valid category defines licenses which are
32       * 						assumed to be ok.
33       * 					
34       */
35      private LicensesList valid;
36  
37      /**
38       * 
39       * 							The invalid category defines licenses which are
40       * 							not ok.
41       * 					
42       */
43      private LicensesList invalid;
44  
45      /**
46       * 
47       * 						The warning category defines licenses which are
48       * 						defined to be warning.
49       * 					
50       */
51      private LicensesList warning;
52  
53      /**
54       * Field modelEncoding.
55       */
56      private String modelEncoding = "UTF-8";
57  
58  
59        //-----------/
60       //- Methods -/
61      //-----------/
62  
63      /**
64       * Get the invalid category defines licenses which are
65       * 							not ok.
66       * 
67       * @return LicensesList
68       */
69      public LicensesList getInvalid()
70      {
71          return this.invalid;
72      } //-- LicensesList getInvalid()
73  
74      /**
75       * Get the modelEncoding field.
76       * 
77       * @return String
78       */
79      public String getModelEncoding()
80      {
81          return this.modelEncoding;
82      } //-- String getModelEncoding()
83  
84      /**
85       * Get the valid category defines licenses which are
86       * 						assumed to be ok.
87       * 
88       * @return LicensesList
89       */
90      public LicensesList getValid()
91      {
92          return this.valid;
93      } //-- LicensesList getValid()
94  
95      /**
96       * Get the warning category defines licenses which are
97       * 						defined to be warning.
98       * 
99       * @return LicensesList
100      */
101     public LicensesList getWarning()
102     {
103         return this.warning;
104     } //-- LicensesList getWarning()
105 
106     /**
107      * Set the invalid category defines licenses which are
108      * 							not ok.
109      * 
110      * @param invalid
111      */
112     public void setInvalid( LicensesList invalid )
113     {
114         this.invalid = invalid;
115     } //-- void setInvalid( LicensesList )
116 
117     /**
118      * Set the modelEncoding field.
119      * 
120      * @param modelEncoding
121      */
122     public void setModelEncoding( String modelEncoding )
123     {
124         this.modelEncoding = modelEncoding;
125     } //-- void setModelEncoding( String )
126 
127     /**
128      * Set the valid category defines licenses which are
129      * 						assumed to be ok.
130      * 
131      * @param valid
132      */
133     public void setValid( LicensesList valid )
134     {
135         this.valid = valid;
136     } //-- void setValid( LicensesList )
137 
138     /**
139      * Set the warning category defines licenses which are
140      * 						defined to be warning.
141      * 
142      * @param warning
143      */
144     public void setWarning( LicensesList warning )
145     {
146         this.warning = warning;
147     } //-- void setWarning( LicensesList )
148 
149 }