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

公開メンバ関数

Authenticator create (KeycloakSession session)
 
Authenticator createDisplay (KeycloakSession session, String displayType)
 
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< ProviderConfigPropertygetConfigProperties ()
 
boolean isUserSetupAllowed ()
 
default int order ()
 

静的公開変数類

static final String PROVIDER_ID = "auth-username-password-form"
 
static final UsernamePasswordForm SINGLETON = new UsernamePasswordForm()
 
static final AuthenticationExecutionModel.Requirement [] REQUIREMENT_CHOICES
 

詳解

著者
Bill Burke
バージョン
Revision
1

関数詳解

◆ close()

void org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.close ( )
inline

org.keycloak.provider.ProviderFactory< T extends Provider >を実装しています。

66  {
67 
68  }

◆ create()

Authenticator org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.create ( KeycloakSession  session)
inline

org.keycloak.provider.ProviderFactory< T extends Provider >を実装しています。

44  {
45  return SINGLETON;
46  }
static final UsernamePasswordForm SINGLETON
Definition: UsernamePasswordFormFactory.java:41

◆ createDisplay()

Authenticator org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.createDisplay ( KeycloakSession  session,
String  displayType 
)
inline

org.keycloak.authentication.DisplayTypeAuthenticatorFactoryを実装しています。

49  {
50  if (displayType == null) return SINGLETON;
51  if (!OAuth2Constants.DISPLAY_CONSOLE.equalsIgnoreCase(displayType)) return null;
52  return ConsoleUsernamePasswordAuthenticator.SINGLETON;
53  }
static final UsernamePasswordForm SINGLETON
Definition: UsernamePasswordFormFactory.java:41

◆ getConfigProperties()

List<ProviderConfigProperty> org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getConfigProperties ( )
inline

org.keycloak.provider.ConfiguredProviderを実装しています。

104  {
105  return null;
106  }

◆ getDisplayType()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getDisplayType ( )
inline

org.keycloak.authentication.ConfigurableAuthenticatorFactoryを実装しています。

94  {
95  return "Username Password Form";
96  }

◆ getHelpText()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getHelpText ( )
inline

org.keycloak.provider.ConfiguredProviderを実装しています。

99  {
100  return "Validates a username and password from login form.";
101  }

◆ getId()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getId ( )
inline

org.keycloak.provider.ProviderFactory< T extends Provider >を実装しています。

71  {
72  return PROVIDER_ID;
73  }
static final String PROVIDER_ID
Definition: UsernamePasswordFormFactory.java:40

◆ getReferenceCategory()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getReferenceCategory ( )
inline

org.keycloak.authentication.ConfigurableAuthenticatorFactoryを実装しています。

76  {
77  return UserCredentialModel.PASSWORD;
78  }

◆ getRequirementChoices()

AuthenticationExecutionModel.Requirement [] org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getRequirementChoices ( )
inline

org.keycloak.authentication.ConfigurableAuthenticatorFactoryを実装しています。

89  {
90  return REQUIREMENT_CHOICES;
91  }
static final AuthenticationExecutionModel.Requirement [] REQUIREMENT_CHOICES
Definition: UsernamePasswordFormFactory.java:84

◆ init()

void org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.init ( Config.Scope  config)
inline

org.keycloak.provider.ProviderFactory< T extends Provider >を実装しています。

56  {
57 
58  }

◆ isConfigurable()

boolean org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.isConfigurable ( )
inline

org.keycloak.authentication.ConfigurableAuthenticatorFactoryを実装しています。

81  {
82  return false;
83  }

◆ isUserSetupAllowed()

boolean org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.isUserSetupAllowed ( )
inline

org.keycloak.authentication.ConfigurableAuthenticatorFactoryを実装しています。

109  {
110  return false;
111  }

◆ order()

default int org.keycloak.provider.ProviderFactory< T extends Provider >.order ( )
inlineinherited

◆ postInit()

void org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.postInit ( KeycloakSessionFactory  factory)
inline

org.keycloak.provider.ProviderFactory< T extends Provider >を実装しています。

61  {
62 
63  }

メンバ詳解

◆ PROVIDER_ID

final String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.PROVIDER_ID = "auth-username-password-form"
static

◆ REQUIREMENT_CHOICES

final AuthenticationExecutionModel.Requirement [] org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.REQUIREMENT_CHOICES
static
初期値:
= {
AuthenticationExecutionModel.Requirement.REQUIRED
}

◆ SINGLETON

final UsernamePasswordForm org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.SINGLETON = new UsernamePasswordForm()
static

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