This repository was archived by the owner on Dec 25, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
samples/client/petstore/java Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -298,3 +298,15 @@ allowed input and output types.
298
298
| [ Mammal.Mammal1] ( docs/components/schemas/Mammal.md#mammal1 ) | |
299
299
| [ Whale.Whale1] ( docs/components/schemas/Whale.md#whale1 ) | |
300
300
| [ Zebra.Zebra1] ( docs/components/schemas/Zebra.md#zebra1 ) | |
301
+
302
+ ## Component SecuritySchemes
303
+
304
+ | Class | Description |
305
+ | ----- | ----------- |
306
+ | [ ApiKey] ( docs/components/securitysschemes/ApiKey.md ) | apiKey in header |
307
+ | [ ApiKeyQuery] ( docs/components/securitysschemes/ApiKeyQuery.md ) | apiKey in query |
308
+ | [ BearerTest] ( docs/components/securitysschemes/BearerTest.md ) | http bearer with JWT bearer format |
309
+ | [ HttpBasicTest] ( docs/components/securitysschemes/HttpBasicTest.md ) | http basic |
310
+ | [ HttpSignatureTest] ( docs/components/securitysschemes/HttpSignatureTest.md ) | http + signature |
311
+ | [ OpenIdConnectTest] ( docs/components/securitysschemes/OpenIdConnectTest.md ) | openIdConnect |
312
+ | [ PetstoreAuth] ( docs/components/securitysschemes/PetstoreAuth.md ) | oauth2 implicit flow with two scopes |
Original file line number Diff line number Diff line change @@ -173,6 +173,18 @@ allowed input and output types.
173
173
{{ /with }}
174
174
{{ /each }}
175
175
{{ /if }}
176
+ {{ #if securitySchemes }}
177
+
178
+ ## Component SecuritySchemes
179
+
180
+ | Class | Description |
181
+ | ----- | ----------- |
182
+ {{ #each securitySchemes }}
183
+ {{ #with this }}
184
+ | [{{ jsonPathPiece.pascalCase }} ](docs/components/securitysschemes/{{ jsonPathPiece.snakeCase }} .md) |{{ #if description }} {{ description.originalWithBr }} {{ /if }} |
185
+ {{ /with }}
186
+ {{ /each }}
187
+ {{ /if }}
176
188
{{ #if infoEmail }}
177
189
178
190
## Author
You can’t perform that action at this time.
0 commit comments