keycloak-service
公開メンバ関数 | 静的公開変数類 | 全メンバ一覧
org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory クラス
org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory の継承関係図
Inheritance graph
org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory 連携図
Collaboration graph

公開メンバ関数

Authenticator create (KeycloakSession session)
 
void init (Config.Scope config)
 
void postInit (KeycloakSessionFactory factory)
 
void close ()
 
String getId ()
 
String getReferenceCategory ()
 
boolean isConfigurable ()
 
AuthenticationExecutionModel.Requirement [] getRequirementChoices ()
 
String getDisplayType ()
 
String getHelpText ()
 
List< ProviderConfigProperty > getConfigProperties ()
 
boolean isUserSetupAllowed ()
 

静的公開変数類

static final String PROVIDER_ID = "basic-auth-otp"
 
static final BasicAuthOTPAuthenticator SINGLETON = new BasicAuthOTPAuthenticator()
 
static final AuthenticationExecutionModel.Requirement [] REQUIREMENT_CHOICES
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ close()

void org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.close ( )
inline
56  {
57 
58  }

◆ create()

Authenticator org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.create ( KeycloakSession  session)
inline
41  {
42  return SINGLETON;
43  }
static final BasicAuthOTPAuthenticator SINGLETON
Definition: BasicAuthOTPAuthenticatorFactory.java:38

◆ getConfigProperties()

List<ProviderConfigProperty> org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getConfigProperties ( )
inline
94  {
95  return Collections.EMPTY_LIST;
96  }

◆ getDisplayType()

String org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getDisplayType ( )
inline
84  {
85  return "Basic Auth Password+OTP";
86  }

◆ getHelpText()

String org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getHelpText ( )
inline
89  {
90  return "Challenge-response authentication using HTTP BASIC scheme. Password param should contain a combination of password + otp. Realm's OTP policy is used to determine how to parse this. This SHOULD NOT BE USED in conjection with regular basic auth provider.";
91  }

◆ getId()

String org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getId ( )
inline
61  {
62  return PROVIDER_ID;
63  }
static final String PROVIDER_ID
Definition: BasicAuthOTPAuthenticatorFactory.java:37

◆ getReferenceCategory()

String org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getReferenceCategory ( )
inline
66  {
67  return UserCredentialModel.PASSWORD;
68  }

◆ getRequirementChoices()

AuthenticationExecutionModel.Requirement [] org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.getRequirementChoices ( )
inline
79  {
80  return REQUIREMENT_CHOICES;
81  }
static final AuthenticationExecutionModel.Requirement [] REQUIREMENT_CHOICES
Definition: BasicAuthOTPAuthenticatorFactory.java:74

◆ init()

void org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.init ( Config.Scope  config)
inline
46  {
47 
48  }

◆ isConfigurable()

boolean org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.isConfigurable ( )
inline
71  {
72  return false;
73  }

◆ isUserSetupAllowed()

boolean org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.isUserSetupAllowed ( )
inline
99  {
100  return false;
101  }

◆ postInit()

void org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.postInit ( KeycloakSessionFactory  factory)
inline
51  {
52 
53  }

メンバ詳解

◆ PROVIDER_ID

final String org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.PROVIDER_ID = "basic-auth-otp"
static

◆ REQUIREMENT_CHOICES

final AuthenticationExecutionModel.Requirement [] org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.REQUIREMENT_CHOICES
static
初期値:
= {
AuthenticationExecutionModel.Requirement.REQUIRED, AuthenticationExecutionModel.Requirement.OPTIONAL, AuthenticationExecutionModel.Requirement.DISABLED
}

◆ SINGLETON

final BasicAuthOTPAuthenticator org.keycloak.authentication.authenticators.challenge.BasicAuthOTPAuthenticatorFactory.SINGLETON = new BasicAuthOTPAuthenticator()
static

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