vertx / io.vertx.kotlin.ext.auth.oauth2 / OAuth2ClientOptions

OAuth2ClientOptions

fun OAuth2ClientOptions(alpnVersions: Iterable<HttpVersion>? = null, authorizationPath: String? = null, clientID: String? = null, clientSecret: String? = null, clientSecretParameterName: String? = null, connectTimeout: Int? = null, crlPaths: Iterable<String>? = null, crlValues: Iterable<Buffer>? = null, decoderInitialBufferSize: Int? = null, defaultHost: String? = null, defaultPort: Int? = null, enabledCipherSuites: Iterable<String>? = null, enabledSecureTransportProtocols: Iterable<String>? = null, extraParameters: JsonObject? = null, forceSni: Boolean? = null, headers: JsonObject? = null, http2ClearTextUpgrade: Boolean? = null, http2ConnectionWindowSize: Int? = null, http2KeepAliveTimeout: Int? = null, http2MaxPoolSize: Int? = null, http2MultiplexingLimit: Int? = null, idleTimeout: Int? = null, initialSettings: Http2Settings? = null, introspectionPath: String? = null, jdkSslEngineOptions: JdkSSLEngineOptions? = null, jwkPath: String? = null, jwtOptions: JWTOptions? = null, jwtToken: Boolean? = null, keepAlive: Boolean? = null, keepAliveTimeout: Int? = null, keyStoreOptions: JksOptions? = null, localAddress: String? = null, logActivity: Boolean? = null, logoutPath: String? = null, maxChunkSize: Int? = null, maxHeaderSize: Int? = null, maxInitialLineLength: Int? = null, maxPoolSize: Int? = null, maxRedirects: Int? = null, maxWaitQueueSize: Int? = null, maxWebsocketFrameSize: Int? = null, maxWebsocketMessageSize: Int? = null, metricsName: String? = null, openSslEngineOptions: OpenSSLEngineOptions? = null, pemKeyCertOptions: PemKeyCertOptions? = null, pemTrustOptions: PemTrustOptions? = null, pfxKeyCertOptions: PfxOptions? = null, pfxTrustOptions: PfxOptions? = null, pipelining: Boolean? = null, pipeliningLimit: Int? = null, poolCleanerPeriod: Int? = null, protocolVersion: HttpVersion? = null, proxyOptions: ProxyOptions? = null, pubSecKeys: Iterable<PubSecKeyOptions>? = null, receiveBufferSize: Int? = null, reuseAddress: Boolean? = null, reusePort: Boolean? = null, revocationPath: String? = null, scopeSeparator: String? = null, sendBufferSize: Int? = null, sendUnmaskedFrames: Boolean? = null, site: String? = null, soLinger: Int? = null, ssl: Boolean? = null, tcpCork: Boolean? = null, tcpFastOpen: Boolean? = null, tcpKeepAlive: Boolean? = null, tcpNoDelay: Boolean? = null, tcpQuickAck: Boolean? = null, tokenPath: String? = null, trafficClass: Int? = null, trustAll: Boolean? = null, trustStoreOptions: JksOptions? = null, tryUseCompression: Boolean? = null, useAlpn: Boolean? = null, useBasicAuthorizationHeader: Boolean? = null, usePooledBuffers: Boolean? = null, userAgent: String? = null, userInfoParameters: JsonObject? = null, userInfoPath: String? = null, verifyHost: Boolean? = null): OAuth2ClientOptions

A function providing a DSL for building io.vertx.ext.auth.oauth2.OAuth2ClientOptions objects.

Options describing how an OAuth2 will make connections.

Parameters

alpnVersions -

authorizationPath - Get the Oauth2 authorization resource path. e.g.: /oauth/authorize

clientID - Set the provider client id

clientSecret - Set the provider client secret

clientSecretParameterName - Override the HTTP form field name for client secret

connectTimeout -

crlPaths -

crlValues -

decoderInitialBufferSize -

defaultHost -

defaultPort -

enabledCipherSuites -

enabledSecureTransportProtocols -

extraParameters - Set extra parameters to be sent to the provider on each request

forceSni -

headers - Set custom headers to be sent with every request to the provider

http2ClearTextUpgrade -

http2ConnectionWindowSize -

http2KeepAliveTimeout -

http2MaxPoolSize -

http2MultiplexingLimit -

idleTimeout -

initialSettings -

introspectionPath - Set the provider token introspection resource path

jdkSslEngineOptions -

jwkPath -

jwtOptions -

jwtToken -

keepAlive -

keepAliveTimeout -

keyStoreOptions -

localAddress -

logActivity -

logoutPath - Set the provider logout path

maxChunkSize -

maxHeaderSize -

maxInitialLineLength -

maxPoolSize -

maxRedirects -

maxWaitQueueSize -

maxWebsocketFrameSize -

maxWebsocketMessageSize -

metricsName -

openSslEngineOptions -

pemKeyCertOptions -

pemTrustOptions -

pfxKeyCertOptions -

pfxTrustOptions -

pipelining -

pipeliningLimit -

poolCleanerPeriod -

protocolVersion -

proxyOptions -

pubSecKeys - The provider PubSec key options

receiveBufferSize -

reuseAddress -

reusePort -

revocationPath - Set the Oauth2 revocation resource path. e.g.: /oauth/revoke

scopeSeparator - Set the provider scope separator

sendBufferSize -

sendUnmaskedFrames -

site - Root URL for the provider

soLinger -

ssl -

tcpCork -

tcpFastOpen -

tcpKeepAlive -

tcpNoDelay -

tcpQuickAck -

tokenPath - Get the Oauth2 token resource path. e.g.: /oauth/token

trafficClass -

trustAll -

trustStoreOptions -

tryUseCompression -

useAlpn -

useBasicAuthorizationHeader - Flag to use HTTP basic auth header with client id, client secret.

usePooledBuffers -

userAgent - Set a custom user agent to use when communicating to a provider

userInfoParameters - Set custom parameters to be sent during the userInfo resource request

userInfoPath - Set the provider userInfo resource path

verifyHost -