mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-07-03 06:00:52 +00:00
[DART] Add standard generated classes as reserved (#8975)
* [DART] Add standard generated classes as reserved * Move StreamedRequest into dart client
This commit is contained in:
parent
45a3764180
commit
e9f3b09d05
@ -17,6 +17,7 @@
|
|||||||
|
|
||||||
package org.openapitools.codegen.languages;
|
package org.openapitools.codegen.languages;
|
||||||
|
|
||||||
|
import com.google.common.collect.Sets;
|
||||||
import org.openapitools.codegen.CliOption;
|
import org.openapitools.codegen.CliOption;
|
||||||
import org.openapitools.codegen.CodegenConstants;
|
import org.openapitools.codegen.CodegenConstants;
|
||||||
import org.openapitools.codegen.SupportingFile;
|
import org.openapitools.codegen.SupportingFile;
|
||||||
@ -37,6 +38,19 @@ public class DartClientCodegen extends AbstractDartCodegen {
|
|||||||
public DartClientCodegen() {
|
public DartClientCodegen() {
|
||||||
super();
|
super();
|
||||||
|
|
||||||
|
additionalReservedWords.addAll(
|
||||||
|
Sets.newHashSet(
|
||||||
|
"StreamedRequest",
|
||||||
|
"ApiClient",
|
||||||
|
"QueryParam",
|
||||||
|
"Authentication",
|
||||||
|
"HttpBasicAuth",
|
||||||
|
"HttpBearerAuth",
|
||||||
|
"ApiKeyAuth",
|
||||||
|
"OAuth"
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
final CliOption serializationLibrary = new CliOption(CodegenConstants.SERIALIZATION_LIBRARY,
|
final CliOption serializationLibrary = new CliOption(CodegenConstants.SERIALIZATION_LIBRARY,
|
||||||
"Specify serialization library");
|
"Specify serialization library");
|
||||||
serializationLibrary.setDefault(SERIALIZATION_LIBRARY_NATIVE);
|
serializationLibrary.setDefault(SERIALIZATION_LIBRARY_NATIVE);
|
||||||
|
Loading…
x
Reference in New Issue
Block a user