Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,17 @@ public List<CliOption> cliOptions() {
return cliOptions;
}


// a map to store the mapping between inline schema and the name provided by the user
protected Map<String, String> inlineSchemaNameMapping = new HashMap<>();
// a map to store the inline schema naming conventions
protected Map<String, String> inlineSchemaOption = new HashMap<>();
public Map<String, String> inlineSchemaOption() {
return inlineSchemaOption;
}
public Map<String, String> inlineSchemaNameMapping() {
return inlineSchemaNameMapping;
}
public void processOpts() {
if (additionalProperties.containsKey(CodegenConstants.TEMPLATE_DIR)) {
this.customTemplateDir = additionalProperties.get(CodegenConstants.TEMPLATE_DIR).toString();
Expand Down