Skip to content
This repository was archived by the owner on Feb 9, 2021. It is now read-only.

Commit ef26ce6

Browse files
karismannwing328
authored andcommittedMay 11, 2019
[Kotlin] client improvement / remove WildCards in client/server (OpenAPITools#2862)
1 parent 9323cad commit ef26ce6

File tree

58 files changed

+660
-344
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+660
-344
lines changed
 

‎.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -175,12 +175,14 @@ samples/client/petstore/typescript-angular/tsd-debug.log
175175
# aspnetcore
176176
samples/server/petstore/aspnetcore/.vs/
177177
effective.pom
178+
178179
# kotlin
179180
samples/client/petstore/kotlin/src/main/kotlin/test/
180181
samples/client/petstore/kotlin-threetenbp/build
181182
samples/client/petstore/kotlin-string/build
182-
samples/server/petstore/kotlin-server/ktor/build
183183
samples/openapi3/client/petstore/kotlin/build
184+
samples/server/petstore/kotlin-server/ktor/build
185+
samples/server/petstore/kotlin-springboot/build
184186
\?
185187

186188
# haskell

‎docs/generators/kotlin-server.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@ sidebar_label: kotlin-server
88
| Option | Description | Values | Default |
99
| ------ | ----------- | ------ | ------- |
1010
|sourceFolder|source folder for generated code| |src/main/kotlin|
11-
|packageName|Generated artifact package name.| |org.openapitools|
11+
|packageName|Generated artifact package name.| |org.openapitools.server|
1212
|apiSuffix|suffix for api classes| |Api|
1313
|groupId|Generated artifact package's organization (i.e. maven groupId).| |org.openapitools|
14-
|artifactId|Generated artifact id (name of jar).| |null|
14+
|artifactId|Generated artifact id (name of jar).| |kotlin-server|
1515
|artifactVersion|Generated artifact's package version.| |1.0.0|
1616
|enumPropertyNaming|Naming convention for enum properties: 'camelCase', 'PascalCase', 'snake_case', 'UPPERCASE', and 'original'| |camelCase|
1717
|parcelizeModels|toggle "@Parcelize" for generated models| |null|
18-
|library|library template (sub-template) to use|<dl><dt>**ktor**</dt><dd>ktor framework</dd><dl>|ktor|
18+
|library|library template (sub-template)|<dl><dt>**ktor**</dt><dd>ktor framework</dd><dl>|ktor|
1919
|featureAutoHead|Automatically provide responses to HEAD requests for existing routes that have the GET verb defined.| |true|
2020
|featureConditionalHeaders|Avoid sending content if client already has same content, by checking ETag or LastModified properties.| |false|
2121
|featureHSTS|Avoid sending content if client already has same content, by checking ETag or LastModified properties.| |true|

0 commit comments

Comments
 (0)
This repository has been archived.