Skip to content

Commit 40010fc

Browse files
committed
Sync documentation of main branch
1 parent 6d17213 commit 40010fc

22 files changed

+291
-70
lines changed

_data/versioned/main/index/quarkus.yaml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ types:
55
- title: Authorization of web endpoints
66
filename: security-authorize-web-endpoints-reference.adoc
77
summary: Quarkus has an integrated pluggable web security layer.
8-
categories: "web, security"
8+
categories: "security, web"
99
id: security-authorize-web-endpoints-reference
1010
type: reference
1111
url: /guides/security-authorize-web-endpoints-reference
@@ -18,7 +18,7 @@ types:
1818
- title: Command Mode Applications
1919
filename: command-mode-reference.adoc
2020
summary: This reference guide explains how to develop command line applications with Quarkus.
21-
categories: "command-line, core"
21+
categories: "core, command-line"
2222
type: reference
2323
url: /guides/command-mode-reference
2424
- title: Configuration Reference Guide
@@ -159,28 +159,28 @@ types:
159159
- title: Authentication mechanisms in Quarkus
160160
filename: security-authentication-mechanisms.adoc
161161
summary: "The Quarkus Security framework supports multiple authentication mechanisms, which you can use to secure your applications."
162-
categories: "web, security"
162+
categories: "security, web"
163163
id: security-authentication-mechanisms
164164
type: concepts
165165
url: /guides/security-authentication-mechanisms
166166
- title: Basic authentication
167167
filename: security-basic-authentication.adoc
168168
summary: HTTP Basic authentication is one of the least resource-demanding techniques that enforce access controls to web resources.
169-
categories: "web, security"
169+
categories: "security, web"
170170
id: security-basic-authentication
171171
type: concepts
172172
url: /guides/security-basic-authentication
173173
- title: Configuring Well-Known OpenID Connect Providers
174174
filename: security-openid-connect-providers.adoc
175175
summary: This document explains how to configure well-known social OIDC and OAuth2 providers.
176-
categories: "web, security"
176+
categories: "security, web"
177177
id: security-openid-connect-providers
178178
type: concepts
179179
url: /guides/security-openid-connect-providers
180180
- title: "Duplicated context, context locals, asynchronous processing and propagation"
181181
filename: duplicated-context.adoc
182182
summary: "When using a traditional, blocking, and synchronous framework, processing of each request is performed in a dedicated thread."
183-
categories: "architecture, core"
183+
categories: "core, architecture"
184184
id: duplicated-context
185185
type: concepts
186186
url: /guides/duplicated-context
@@ -194,21 +194,21 @@ types:
194194
- title: OpenID Connect (OIDC) Bearer token authentication
195195
filename: security-oidc-bearer-token-authentication.adoc
196196
summary: Secure HTTP access to Jakarta REST (formerly known as JAX-RS) endpoints in your application with Bearer token authentication by using the Quarkus OpenID Connect (OIDC) extension.
197-
categories: "web, security"
197+
categories: "security, web"
198198
id: security-oidc-bearer-token-authentication
199199
type: concepts
200200
url: /guides/security-oidc-bearer-token-authentication
201201
- title: OpenID Connect authorization code flow mechanism for protecting web applications
202202
filename: security-oidc-code-flow-authentication.adoc
203203
summary: "To protect your web applications, you can use the industry-standard OpenID Connect (OIDC) Authorization Code Flow mechanism provided by the Quarkus OIDC extension."
204-
categories: "web, security"
204+
categories: "security, web"
205205
id: security-oidc-code-flow-authentication
206206
type: concepts
207207
url: /guides/security-oidc-code-flow-authentication
208208
- title: Proactive authentication
209209
filename: security-proactive-authentication.adoc
210210
summary: Proactive authentication is enabled in Quarkus by default.
211-
categories: "web, security"
211+
categories: "security, web"
212212
id: security-proactive-authentication
213213
type: concepts
214214
url: /guides/security-proactive-authentication
@@ -236,7 +236,7 @@ types:
236236
- title: Security vulnerability detection and reporting in Quarkus
237237
filename: security-vulnerability-detection.adoc
238238
summary: Most of the Quarkus tags are registered in the US National Vulnerability Database (NVD) in Common Platform Enumeration (CPE) name format.
239-
categories: "contributing, security"
239+
categories: "security, contributing"
240240
id: security-vulnerability-detection
241241
type: concepts
242242
url: /guides/security-vulnerability-detection
@@ -265,7 +265,7 @@ types:
265265
- title: Use virtual threads in REST applications
266266
filename: resteasy-reactive-virtual-threads.adoc
267267
summary: How to use virtual threads in a REST application
268-
categories: "web, core"
268+
categories: "core, web"
269269
id: resteasy-reactive-virtual-threads
270270
type: howto
271271
url: /guides/resteasy-reactive-virtual-threads
@@ -312,7 +312,7 @@ types:
312312
- title: Protect a web application by using OpenID Connect (OIDC) authorization code flow
313313
filename: security-oidc-code-flow-authentication-tutorial.adoc
314314
summary: "With the Quarkus OpenID Connect (OIDC) extension, you can protect application HTTP endpoints by using the OIDC Authorization Code Flow mechanism."
315-
categories: "web, security"
315+
categories: "security, web"
316316
id: security-oidc-code-flow-authentication-tutorial
317317
type: tutorial
318318
url: /guides/security-oidc-code-flow-authentication-tutorial
@@ -952,14 +952,14 @@ types:
952952
- title: Quarkus and Gradle
953953
filename: gradle-tooling.adoc
954954
summary: Develop and build your Quarkus application with Gradle
955-
categories: "tooling, native"
955+
categories: "native, tooling"
956956
id: gradle-tooling
957957
type: guide
958958
url: /guides/gradle-tooling
959959
- title: Quarkus and Maven
960960
filename: maven-tooling.adoc
961961
summary: Develop and build your Quarkus application with Maven
962-
categories: "tooling, native"
962+
categories: "native, tooling"
963963
id: maven-tooling
964964
type: guide
965965
url: /guides/maven-tooling
@@ -1033,7 +1033,7 @@ types:
10331033
- title: Simplified Hibernate ORM with Panache and Kotlin
10341034
filename: hibernate-orm-panache-kotlin.adoc
10351035
summary: This explains the specifics of using Hibernate ORM with Panache in a Kotlin project.
1036-
categories: "data, alt-languages"
1036+
categories: "alt-languages, data"
10371037
type: guide
10381038
url: /guides/hibernate-orm-panache-kotlin
10391039
- title: Simplified Hibernate Reactive with Panache
@@ -1051,13 +1051,13 @@ types:
10511051
- title: Simplified MongoDB with Panache and Kotlin
10521052
filename: mongodb-panache-kotlin.adoc
10531053
summary: This guide covers the usage of MongoDB using active records and repositories in a Kotlin project.
1054-
categories: "data, alt-languages"
1054+
categories: "alt-languages, data"
10551055
type: guide
10561056
url: /guides/mongodb-panache-kotlin
10571057
- title: SmallRye Fault Tolerance
10581058
filename: smallrye-fault-tolerance.adoc
10591059
summary: This guide demonstrates how your Quarkus application can utilize the SmallRye Fault Tolerance specification through the SmallRye Fault Tolerance extension.
1060-
categories: "web, observability"
1060+
categories: "observability, web"
10611061
type: guide
10621062
url: /guides/smallrye-fault-tolerance
10631063
- title: SmallRye GraphQL
@@ -1087,14 +1087,14 @@ types:
10871087
- title: Testing Your Application
10881088
filename: getting-started-testing.adoc
10891089
summary: "This guide covers testing in JVM mode, native mode, and injection of resources into tests"
1090-
categories: "tooling, core, native"
1090+
categories: "native, core, tooling"
10911091
id: testing
10921092
type: guide
10931093
url: /guides/getting-started-testing
10941094
- title: Tips for writing native applications
10951095
filename: writing-native-applications-tips.adoc
10961096
summary: This guide is a collection of tips to help you solve the problems you encounter when compiling applications to native executable.
1097-
categories: "writing-extensions, core, native"
1097+
categories: "native, core, writing-extensions"
10981098
type: guide
10991099
url: /guides/writing-native-applications-tips
11001100
- title: Using Apache Kafka Streams
@@ -1223,7 +1223,7 @@ types:
12231223
- title: Using SSL With Native Executables
12241224
filename: native-and-ssl.adoc
12251225
summary: "In this guide, we will discuss how you can get your native images to support SSL, as native images don't support it out of the box."
1226-
categories: "core, native, security"
1226+
categories: "security, native, core"
12271227
type: guide
12281228
url: /guides/native-and-ssl
12291229
- title: Using Security with .properties File
@@ -1342,7 +1342,7 @@ types:
13421342
- title: Writing JSON REST Services
13431343
filename: rest-json.adoc
13441344
summary: JSON is now the lingua franca between microservices.
1345-
categories: "serialization, web"
1345+
categories: "web, serialization"
13461346
type: guide
13471347
url: /guides/rest-json
13481348
- title: Writing REST Services with RESTEasy Reactive

0 commit comments

Comments
 (0)