Package io.quarkus.oidc.deployment
Class DevUiConfig
- java.lang.Object
-
- io.quarkus.oidc.deployment.DevUiConfig
-
public class DevUiConfig extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDevUiConfig.Grant
-
Field Summary
Fields Modifier and Type Field Description DevUiConfig.GrantgrantGrant type which affects how OpenId Connect Dev UI will facilitate the token acquisition.Map<String,Map<String,String>>grantOptionsGrant optionsDurationwebClientTimeoutThe WebClient timeout.
-
Constructor Summary
Constructors Constructor Description DevUiConfig()
-
-
-
Field Detail
-
grant
public DevUiConfig.Grant grant
Grant type which affects how OpenId Connect Dev UI will facilitate the token acquisition. For example: if the grant type is 'code' then an authorization code will be returned directly to Dev UI which will use a code handler to acquire the tokens while a username and password will have to be entered to request a token using a 'password' grant.
-
webClientTimeout
@ConfigItem(defaultValue="4S") public Duration webClientTimeout
The WebClient timeout. Use this property to configure how long an HTTP client used by Dev UI handlers will wait for a response when requesting tokens from OpenId Connect Provider and sending them to the service endpoint.
-
-