1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34 package fr.paris.lutece.plugins.initializer.business;
35
36 import javax.validation.constraints.Size;
37 import org.hibernate.validator.constraints.NotEmpty;
38 import java.io.Serializable;
39
40
41
42
43 public class StarterComponent implements Serializable
44 {
45 private static final long serialVersionUID = 1L;
46
47
48 private int _nId;
49
50 @Size( max = 255, message = "#i18n{initializer.validation.startercomponent.ArtifactId.size}" )
51 private String _strArtifactId;
52
53 private String _strCodeCategory;
54
55 @Size( max = 255, message = "#i18n{initializer.validation.startercomponent.LabelKey.size}" )
56 private String _strLabelKey;
57
58 private String _strLabelDefault;
59
60 @Size( max = 255, message = "#i18n{initializer.validation.startercomponent.DescriptionKey.size}" )
61 private String _strDescriptionKey;
62
63 private String _strDescriptionDefault;
64
65
66
67
68
69
70 public int getId( )
71 {
72 return _nId;
73 }
74
75
76
77
78
79
80
81 public void setId( int nId )
82 {
83 _nId = nId;
84 }
85
86
87
88
89
90
91 public String getArtifactId( )
92 {
93 return _strArtifactId;
94 }
95
96
97
98
99
100
101
102 public void setArtifactId( String strArtifactId )
103 {
104 _strArtifactId = strArtifactId;
105 }
106
107
108
109
110
111
112 public String getCodeCategory( )
113 {
114 return _strCodeCategory;
115 }
116
117
118
119
120
121
122
123 public void setCodeCategory( String strCodeCategory )
124 {
125 _strCodeCategory = strCodeCategory;
126 }
127
128
129
130
131
132
133 public String getLabelKey( )
134 {
135 return _strLabelKey;
136 }
137
138
139
140
141
142
143
144 public void setLabelKey( String strLabelKey )
145 {
146 _strLabelKey = strLabelKey;
147 }
148
149
150
151
152
153
154 public String getLabelDefault( )
155 {
156 return _strLabelDefault;
157 }
158
159
160
161
162
163
164
165 public void setLabelDefault( String strLabelDefault )
166 {
167 _strLabelDefault = strLabelDefault;
168 }
169
170
171
172
173
174
175 public String getDescriptionKey( )
176 {
177 return _strDescriptionKey;
178 }
179
180
181
182
183
184
185
186 public void setDescriptionKey( String strDescriptionKey )
187 {
188 _strDescriptionKey = strDescriptionKey;
189 }
190
191
192
193
194
195
196 public String getDescriptionDefault( )
197 {
198 return _strDescriptionDefault;
199 }
200
201
202
203
204
205
206
207 public void setDescriptionDefault( String strDescriptionDefault )
208 {
209 _strDescriptionDefault = strDescriptionDefault;
210 }
211
212 }