@@ -185,7 +185,7 @@ public class CodeGenMojo extends AbstractMojo {
185
185
private Map <?, ?> configOptions ;
186
186
187
187
/**
188
- * A map of classes and the import that should be used for that class
188
+ * A map of types and the types they should be instantiated as
189
189
*/
190
190
@ Parameter (name = "instantiationTypes" )
191
191
private List <String > instantiationTypes ;
@@ -197,25 +197,25 @@ public class CodeGenMojo extends AbstractMojo {
197
197
private List <String > importMappings ;
198
198
199
199
/**
200
- * A map of classes and the import that should be used for that class
200
+ * A map of swagger spec types and the generated code types to use for them
201
201
*/
202
202
@ Parameter (name = "typeMappings" )
203
203
private List <String > typeMappings ;
204
204
205
205
/**
206
- * A map of classes and the import that should be used for that class
206
+ * A map of additional language specific primitive types
207
207
*/
208
208
@ Parameter (name = "languageSpecificPrimitives" )
209
209
private List <String > languageSpecificPrimitives ;
210
210
211
211
/**
212
- * A map of classes and the import that should be used for that class
212
+ * A map of additional properties that can be referenced by the mustache templates
213
213
*/
214
214
@ Parameter (name = "additionalProperties" )
215
215
private List <String > additionalProperties ;
216
216
217
217
/**
218
- * A map of classes and the import that should be used for that class
218
+ * A map of reserved names and how they should be escaped
219
219
*/
220
220
@ Parameter (name = "reservedWordsMappings" )
221
221
private List <String > reservedWordsMappings ;
0 commit comments