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

公開メンバ関数

void authenticate (AuthenticationFlowContext context)
 
void action (AuthenticationFlowContext context)
 
boolean requiresUser ()
 
boolean configuredFor (KeycloakSession session, RealmModel realm, UserModel user)
 
void setRequiredActions (KeycloakSession session, RealmModel realm, UserModel user)
 
void close ()
 

静的公開変数類

static final AttemptedAuthenticator SINGLETON = new AttemptedAuthenticator()
 

詳解

Pass-thru atheneticator that just sets the context to attempted.

関数詳解

◆ action()

void org.keycloak.authentication.authenticators.AttemptedAuthenticator.action ( AuthenticationFlowContext  context)
inline
22  {
23  throw new RuntimeException("Unreachable!");
24 
25  }

◆ authenticate()

void org.keycloak.authentication.authenticators.AttemptedAuthenticator.authenticate ( AuthenticationFlowContext  context)
inline
16  {
17  context.attempted();
18 
19  }

◆ close()

void org.keycloak.authentication.authenticators.AttemptedAuthenticator.close ( )
inline
43  {
44 
45  }

◆ configuredFor()

boolean org.keycloak.authentication.authenticators.AttemptedAuthenticator.configuredFor ( KeycloakSession  session,
RealmModel  realm,
UserModel  user 
)
inline
33  {
34  return true;
35  }

◆ requiresUser()

boolean org.keycloak.authentication.authenticators.AttemptedAuthenticator.requiresUser ( )
inline
28  {
29  return false;
30  }

◆ setRequiredActions()

void org.keycloak.authentication.authenticators.AttemptedAuthenticator.setRequiredActions ( KeycloakSession  session,
RealmModel  realm,
UserModel  user 
)
inline
38  {
39 
40  }

メンバ詳解

◆ SINGLETON

final AttemptedAuthenticator org.keycloak.authentication.authenticators.AttemptedAuthenticator.SINGLETON = new AttemptedAuthenticator()
static

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