Package io.quarkus.oidc.common.runtime
Class OidcCommonConfig.Credentials.Secret
- java.lang.Object
-
- io.quarkus.oidc.common.runtime.OidcCommonConfig.Credentials.Secret
-
- Enclosing class:
- OidcCommonConfig.Credentials
public static class OidcCommonConfig.Credentials.Secret extends Object
Supports the client authentication methods which involve sending a client secret.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classOidcCommonConfig.Credentials.Secret.Method
-
Field Summary
Fields Modifier and Type Field Description Optional<OidcCommonConfig.Credentials.Secret.Method>methodAuthentication method.OidcCommonConfig.Credentials.ProviderproviderThe Secret CredentialsProviderOptional<String>valueThe client secret value - it will be ignored if 'secret.key' is set
-
Constructor Summary
Constructors Constructor Description Secret()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Optional<OidcCommonConfig.Credentials.Secret.Method>getMethod()OidcCommonConfig.Credentials.ProvidergetSecretProvider()Optional<String>getValue()voidsetMethod(OidcCommonConfig.Credentials.Secret.Method method)voidsetSecretProvider(OidcCommonConfig.Credentials.Provider secretProvider)voidsetValue(String value)
-
-
-
Field Detail
-
value
@ConfigItem public Optional<String> value
The client secret value - it will be ignored if 'secret.key' is set
-
provider
@ConfigItem public OidcCommonConfig.Credentials.Provider provider
The Secret CredentialsProvider
-
method
@ConfigItem public Optional<OidcCommonConfig.Credentials.Secret.Method> method
Authentication method.
-
-
Method Detail
-
setValue
public void setValue(String value)
-
getMethod
public Optional<OidcCommonConfig.Credentials.Secret.Method> getMethod()
-
setMethod
public void setMethod(OidcCommonConfig.Credentials.Secret.Method method)
-
getSecretProvider
public OidcCommonConfig.Credentials.Provider getSecretProvider()
-
setSecretProvider
public void setSecretProvider(OidcCommonConfig.Credentials.Provider secretProvider)
-
-