Class ClientAuthenticationProperties
- java.lang.Object
-
- no.nav.security.token.support.client.core.ClientAuthenticationProperties
-
public class ClientAuthenticationProperties extends Object
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classClientAuthenticationProperties.ClientAuthenticationPropertiesBuilder
-
Constructor Summary
Constructors Constructor Description ClientAuthenticationProperties(@NotNull String clientId, com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethod clientAuthMethod, String clientSecret, String clientJwk)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ClientAuthenticationProperties.ClientAuthenticationPropertiesBuilderbuilder()booleanequals(Object o)com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethodgetClientAuthMethod()@NotNull StringgetClientId()StringgetClientJwk()com.nimbusds.jose.jwk.RSAKeygetClientRsaKey()StringgetClientSecret()inthashCode()ClientAuthenticationProperties.ClientAuthenticationPropertiesBuildertoBuilder()StringtoString()
-
-
-
Method Detail
-
builder
public static ClientAuthenticationProperties.ClientAuthenticationPropertiesBuilder builder()
-
getClientId
@NotNull public @NotNull String getClientId()
-
getClientAuthMethod
public com.nimbusds.oauth2.sdk.auth.ClientAuthenticationMethod getClientAuthMethod()
-
getClientSecret
public String getClientSecret()
-
getClientJwk
public String getClientJwk()
-
getClientRsaKey
public com.nimbusds.jose.jwk.RSAKey getClientRsaKey()
-
toBuilder
public ClientAuthenticationProperties.ClientAuthenticationPropertiesBuilder toBuilder()
-
-