forked from loafle/openapi-generator-original
* Removals of most of the warnings found by lint * Removals of most of the warnings found by lint (PART 2) * Removals of most of the warnings found by lint (PART 3) * Removals of most of the warnings found by lint (PART 4) * Removals of most of the warnings found by lint (PART 5) * Fix conversion error * Removal of unnecessary import. Other will need more complex login in the generator itself (not in the mustache files) * Add missing imports + fix to the regex. Generation of the samples
21 lines
357 B
Plaintext
21 lines
357 B
Plaintext
package {{package}};
|
|
|
|
{{#imports}}import {{import}};
|
|
{{/imports}}
|
|
{{#serializableModel}}
|
|
import java.io.Serializable;
|
|
{{/serializableModel}}
|
|
import com.fasterxml.jackson.annotation.*;
|
|
import java.util.Set;
|
|
import javax.validation.*;
|
|
{{#models}}
|
|
{{#model}}
|
|
{{#isEnum}}
|
|
{{>enumOuterClass}}
|
|
{{/isEnum}}
|
|
{{^isEnum}}
|
|
{{>pojo}}
|
|
{{/isEnum}}
|
|
{{/model}}
|
|
{{/models}}
|