From 7e723e4ae50e03890b9cd468555c71a335eb1a4b Mon Sep 17 00:00:00 2001 From: zmoore-usgs Date: Fri, 14 Jul 2017 14:17:12 -0500 Subject: [PATCH] Updated comments --- .../java/io/swagger/codegen/plugin/CodeGenMojo.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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;