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
-
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()Optional<String>getValue()voidsetMethod(OidcCommonConfig.Credentials.Secret.Method method)voidsetValue(String value)
-
-
-
Field Detail
-
value
@ConfigItem public Optional<String> value
The client secret
-
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)
-
-