diff --git a/bom/application/pom.xml b/bom/application/pom.xml
index 15d8f888667895..d06742e665e12c 100644
--- a/bom/application/pom.xml
+++ b/bom/application/pom.xml
@@ -220,11 +220,11 @@
1.0.0
1.0.8
- 24.0.2
- 2.7.2
- 3.3.1
- 2.7.2
- 1.1.0
+ 24.0.5
+ 2.7.4
+ 3.3.2
+ 2.7.4
+ 1.1.1
2.0.3
1.6.1
2.1.2
@@ -236,7 +236,7 @@
1.7.0
5.4.2
2.1.0
- 1.7.1
+ 1.7.2
2.4.0
diff --git a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/OidcTenantConfig.java b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/OidcTenantConfig.java
index 33d0454d4fa527..58f8479206ef28 100644
--- a/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/OidcTenantConfig.java
+++ b/extensions/oidc/runtime/src/main/java/io/quarkus/oidc/OidcTenantConfig.java
@@ -254,8 +254,8 @@ public void setPath(Optional path) {
this.path = path;
}
- public String getPath() {
- return path.get();
+ public Optional getPath() {
+ return path;
}
public void setPostLogoutPath(Optional postLogoutPath) {
@@ -311,8 +311,8 @@ public void setPath(Optional path) {
this.path = path;
}
- public String getPath() {
- return path.get();
+ public Optional getPath() {
+ return path;
}
}
@@ -328,8 +328,8 @@ public void setPath(Optional path) {
this.path = path;
}
- public String getPath() {
- return path.get();
+ public Optional getPath() {
+ return path;
}
}