keycloak-service
公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 非公開変数類 | 全メンバ一覧
列挙 org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType 詳解
org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType 連携図
Collaboration graph

公開メンバ関数

 IdentityMapperType (String name)
 
String getName ()
 

静的公開メンバ関数

static IdentityMapperType parse (String name) throws IllegalArgumentException, IndexOutOfBoundsException
 

公開変数類

 USER_ATTRIBUTE =(USER_ATTRIBUTE_MAPPER)
 
 USERNAME_EMAIL =(USERNAME_EMAIL_MAPPER)
 

非公開変数類

String name
 

詳解

構築子と解体子

◆ IdentityMapperType()

org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.IdentityMapperType ( String  name)
inline
40  {
41  this.name = name;
42  }

関数詳解

◆ getName()

String org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.getName ( )
inline
43 { return this.name; }

◆ parse()

static IdentityMapperType org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.parse ( String  name) throws IllegalArgumentException, IndexOutOfBoundsException
inlinestatic
44  {
45  if (name == null || name.trim().length() == 0)
46  throw new IllegalArgumentException("name");
47 
48  for (IdentityMapperType value : IdentityMapperType.values()) {
49  if (value.getName().equalsIgnoreCase(name))
50  return value;
51  }
52  throw new IndexOutOfBoundsException("name");
53  }
IdentityMapperType(String name)
Definition: X509AuthenticatorConfigModel.java:40

メンバ詳解

◆ name

String org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.name
private

◆ USER_ATTRIBUTE

org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.USER_ATTRIBUTE =(USER_ATTRIBUTE_MAPPER)

◆ USERNAME_EMAIL

org.keycloak.authentication.authenticators.x509.X509AuthenticatorConfigModel.IdentityMapperType.USERNAME_EMAIL =(USERNAME_EMAIL_MAPPER)

次のファイルからこの列挙についての詳解を抽出しました: