keycloak-service
公開メンバ関数 | 限定公開メンバ関数 | 限定公開変数類 | 全メンバ一覧
org.keycloak.protocol.saml.SamlRepresentationAttributes クラス
org.keycloak.protocol.saml.SamlRepresentationAttributes 連携図
Collaboration graph

公開メンバ関数

 SamlRepresentationAttributes (Map< String, String > attributes)
 
String getCanonicalizationMethod ()
 
String getSignatureAlgorithm ()
 
String getNameIDFormat ()
 
String getIncludeAuthnStatement ()
 
String getForceNameIDFormat ()
 
String getSamlServerSignature ()
 
String getAddExtensionsElementWithKeyInfo ()
 
String getForcePostBinding ()
 
String getClientSignature ()
 

限定公開メンバ関数

Map< String, String > getAttributes ()
 

限定公開変数類

Map< String, String > attributes
 

詳解

著者
Bill Burke
バージョン
Revision
1

構築子と解体子

◆ SamlRepresentationAttributes()

org.keycloak.protocol.saml.SamlRepresentationAttributes.SamlRepresentationAttributes ( Map< String, String >  attributes)
inline
29  {
30  this.attributes = attributes;
31  }
Map< String, String > attributes
Definition: SamlRepresentationAttributes.java:27

関数詳解

◆ getAddExtensionsElementWithKeyInfo()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getAddExtensionsElementWithKeyInfo ( )
inline
69  {
70  if (getAttributes() == null) return null;
71  return getAttributes().get(SamlConfigAttributes.SAML_SERVER_SIGNATURE_KEYINFO_EXT);
72  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getAttributes()

Map<String, String> org.keycloak.protocol.saml.SamlRepresentationAttributes.getAttributes ( )
inlineprotected
38  {
39  return attributes;
40  }
Map< String, String > attributes
Definition: SamlRepresentationAttributes.java:27

◆ getCanonicalizationMethod()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getCanonicalizationMethod ( )
inline
33  {
34  if (getAttributes() == null) return null;
35  return getAttributes().get(SamlConfigAttributes.SAML_CANONICALIZATION_METHOD_ATTRIBUTE);
36  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getClientSignature()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getClientSignature ( )
inline
79  {
80  if (getAttributes() == null) return null;
81  return getAttributes().get(SamlConfigAttributes.SAML_CLIENT_SIGNATURE_ATTRIBUTE);
82 
83  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getForceNameIDFormat()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getForceNameIDFormat ( )
inline
59  {
60  if (getAttributes() == null) return null;
61  return getAttributes().get(SamlConfigAttributes.SAML_FORCE_NAME_ID_FORMAT_ATTRIBUTE);
62  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getForcePostBinding()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getForcePostBinding ( )
inline
74  {
75  if (getAttributes() == null) return null;
76  return getAttributes().get(SamlConfigAttributes.SAML_FORCE_POST_BINDING);
77 
78  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getIncludeAuthnStatement()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getIncludeAuthnStatement ( )
inline
53  {
54  if (getAttributes() == null) return null;
55  return getAttributes().get(SamlConfigAttributes.SAML_AUTHNSTATEMENT);
56 
57  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getNameIDFormat()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getNameIDFormat ( )
inline
47  {
48  if (getAttributes() == null) return null;
49  return getAttributes().get(SamlConfigAttributes.SAML_NAME_ID_FORMAT_ATTRIBUTE);
50 
51  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getSamlServerSignature()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getSamlServerSignature ( )
inline
64  {
65  if (getAttributes() == null) return null;
66  return getAttributes().get(SamlConfigAttributes.SAML_SERVER_SIGNATURE);
67  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

◆ getSignatureAlgorithm()

String org.keycloak.protocol.saml.SamlRepresentationAttributes.getSignatureAlgorithm ( )
inline
42  {
43  if (getAttributes() == null) return null;
44  return getAttributes().get(SamlConfigAttributes.SAML_SIGNATURE_ALGORITHM);
45  }
Map< String, String > getAttributes()
Definition: SamlRepresentationAttributes.java:38

メンバ詳解

◆ attributes

Map<String, String> org.keycloak.protocol.saml.SamlRepresentationAttributes.attributes
protected

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