reta commented on code in PR #2724:
URL: https://github.com/apache/cxf/pull/2724#discussion_r2519827158
##########
rt/rs/description-swagger-ui/src/main/java/org/apache/cxf/jaxrs/swagger/ui/SwaggerUiConfig.java:
##########
@@ -336,4 +339,17 @@ public void setTryItOutEnabled(Boolean tryItOutEnabled) {
this.tryItOutEnabled = tryItOutEnabled;
setQueryConfigEnabledIfNeeded();
}
+
+ public SwaggerUiOAuth2Config getOAuthConfig() {
Review Comment:
Just to be clear we do configure OAuth 2:
```suggestion
public SwaggerUiOAuth2Config getOAuth2Config() {
```
##########
rt/rs/description-swagger-ui/src/main/java/org/apache/cxf/jaxrs/swagger/ui/SwaggerUiConfig.java:
##########
@@ -336,4 +339,17 @@ public void setTryItOutEnabled(Boolean tryItOutEnabled) {
this.tryItOutEnabled = tryItOutEnabled;
setQueryConfigEnabledIfNeeded();
}
+
+ public SwaggerUiOAuth2Config getOAuthConfig() {
+ return oAuthConfig;
+ }
+
+ public void setOAuthConfig(SwaggerUiOAuth2Config oAuthConfig) {
Review Comment:
```suggestion
public void setOAuth2Config(SwaggerUiOAuth2Config oAuth2Config) {
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]