gluu
公開メンバ関数 | 静的公開メンバ関数 | 公開変数類 | 非公開メンバ関数 | 非公開変数類 | 全メンバ一覧
列挙 org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod 詳解
org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod 連携図
Collaboration graph

公開メンバ関数

String getMessageDigestString ()
 
String getPkceString ()
 

静的公開メンバ関数

static CodeChallengeMethod fromString (String value)
 

公開変数類

 PLAIN =("plain", "")
 
 S256 =("s256", "SHA-256")
 

非公開メンバ関数

 CodeChallengeMethod (String pkceString, String messageDigestString)
 

非公開変数類

String pkceString
 
String messageDigestString
 

詳解

構築子と解体子

◆ CodeChallengeMethod()

org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.CodeChallengeMethod ( String  pkceString,
String  messageDigestString 
)
inlineprivate
28  {
29  this.pkceString = pkceString;
31  }
String messageDigestString
Definition: CodeVerifier.java:26

関数詳解

◆ fromString()

static CodeChallengeMethod org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.fromString ( String  value)
inlinestatic
41  {
42  for (CodeChallengeMethod type : values()) {
43  if (type.getPkceString().equalsIgnoreCase(value)) {
44  return type;
45  }
46  }
47  return null;
48  }
CodeChallengeMethod(String pkceString, String messageDigestString)
Definition: CodeVerifier.java:28

◆ getMessageDigestString()

String org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.getMessageDigestString ( )
inline
33  {
34  return messageDigestString;
35  }
String messageDigestString
Definition: CodeVerifier.java:26

◆ getPkceString()

String org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.getPkceString ( )
inline
37  {
38  return pkceString;
39  }

メンバ詳解

◆ messageDigestString

String org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.messageDigestString
private

◆ pkceString

String org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.pkceString
private

◆ PLAIN

org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.PLAIN =("plain", "")

◆ S256

org.xdi.oxauth.model.authorize.CodeVerifier.CodeChallengeMethod.S256 =("s256", "SHA-256")

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