mitreid-connect
公開メンバ関数 | 全メンバ一覧
org.mitre.openid.connect.config.JWKSetEditor クラス
org.mitre.openid.connect.config.JWKSetEditor の継承関係図
Inheritance graph
org.mitre.openid.connect.config.JWKSetEditor 連携図
Collaboration graph

公開メンバ関数

void setAsText (String text) throws IllegalArgumentException
 

詳解

Allows JWK Set strings to be used in XML configurations.

著者
jricher

関数詳解

◆ setAsText()

void org.mitre.openid.connect.config.JWKSetEditor.setAsText ( String  text) throws IllegalArgumentException
inline
34  {
35  if (!Strings.isNullOrEmpty(text)) {
36  try {
37  setValue(JWKSet.parse(text));
38  } catch (ParseException e) {
39  throw new IllegalArgumentException(e);
40  }
41  } else {
42  setValue(null);
43  }
44  }

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