keycloak-service
公開メンバ関数 | 静的公開メンバ関数 | 全メンバ一覧
org.keycloak.keys.AbstractRsaKeyProviderFactory クラスabstract
org.keycloak.keys.AbstractRsaKeyProviderFactory の継承関係図
Inheritance graph
org.keycloak.keys.AbstractRsaKeyProviderFactory 連携図
Collaboration graph

公開メンバ関数

void validateConfiguration (KeycloakSession session, RealmModel realm, ComponentModel model) throws ComponentValidationException
 

静的公開メンバ関数

static final ProviderConfigurationBuilder configurationBuilder ()
 

詳解

著者
Stian Thorgersen

関数詳解

◆ configurationBuilder()

static final ProviderConfigurationBuilder org.keycloak.keys.AbstractRsaKeyProviderFactory.configurationBuilder ( )
inlinestatic
32  {
33  return ProviderConfigurationBuilder.create()
34  .property(Attributes.PRIORITY_PROPERTY)
35  .property(Attributes.ENABLED_PROPERTY)
36  .property(Attributes.ACTIVE_PROPERTY)
37  .property(Attributes.RS_ALGORITHM_PROPERTY);
38  }

◆ validateConfiguration()

void org.keycloak.keys.AbstractRsaKeyProviderFactory.validateConfiguration ( KeycloakSession  session,
RealmModel  realm,
ComponentModel  model 
) throws ComponentValidationException
inline
41  {
42  ConfigurationValidationHelper.check(model)
43  .checkLong(Attributes.PRIORITY_PROPERTY, false)
44  .checkBoolean(Attributes.ENABLED_PROPERTY, false)
45  .checkBoolean(Attributes.ACTIVE_PROPERTY, false);
46  }

このクラス詳解は次のファイルから抽出されました: