keycloak-service
公開メンバ関数 | 静的公開変数類 | 全メンバ一覧
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< ProviderConfigProperty > getConfigProperties ()
 
boolean isUserSetupAllowed ()
 

静的公開変数類

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
66  {
67 
68  }

◆ create()

Authenticator org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.create ( KeycloakSession  session)
inline
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
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
104  {
105  return null;
106  }

◆ getDisplayType()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getDisplayType ( )
inline
94  {
95  return "Username Password Form";
96  }

◆ getHelpText()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getHelpText ( )
inline
99  {
100  return "Validates a username and password from login form.";
101  }

◆ getId()

String org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getId ( )
inline
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
76  {
77  return UserCredentialModel.PASSWORD;
78  }

◆ getRequirementChoices()

AuthenticationExecutionModel.Requirement [] org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.getRequirementChoices ( )
inline
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
56  {
57 
58  }

◆ isConfigurable()

boolean org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.isConfigurable ( )
inline
81  {
82  return false;
83  }

◆ isUserSetupAllowed()

boolean org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.isUserSetupAllowed ( )
inline
109  {
110  return false;
111  }

◆ postInit()

void org.keycloak.authentication.authenticators.browser.UsernamePasswordFormFactory.postInit ( KeycloakSessionFactory  factory)
inline
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

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