diff --git a/modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin/CodeGenMojo.java b/modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin/CodeGenMojo.java index 9c8975c7b8d..a73ed6aa0c0 100644 --- a/modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin/CodeGenMojo.java +++ b/modules/swagger-codegen-maven-plugin/src/main/java/io/swagger/codegen/plugin/CodeGenMojo.java @@ -185,7 +185,7 @@ public class CodeGenMojo extends AbstractMojo { private Map configOptions; /** - * A map of classes and the import that should be used for that class + * A map of types and the types they should be instantiated as */ @Parameter(name = "instantiationTypes") private List instantiationTypes; @@ -197,25 +197,25 @@ public class CodeGenMojo extends AbstractMojo { private List importMappings; /** - * A map of classes and the import that should be used for that class + * A map of swagger spec types and the generated code types to use for them */ @Parameter(name = "typeMappings") private List typeMappings; /** - * A map of classes and the import that should be used for that class + * A map of additional language specific primitive types */ @Parameter(name = "languageSpecificPrimitives") private List languageSpecificPrimitives; /** - * A map of classes and the import that should be used for that class + * A map of additional properties that can be referenced by the mustache templates */ @Parameter(name = "additionalProperties") private List additionalProperties; /** - * A map of classes and the import that should be used for that class + * A map of reserved names and how they should be escaped */ @Parameter(name = "reservedWordsMappings") private List reservedWordsMappings;