mitreid-connect
org
mitre
openid
connect
config
JWKSetEditor
公開メンバ関数
|
全メンバ一覧
org.mitre.openid.connect.config.JWKSetEditor クラス
org.mitre.openid.connect.config.JWKSetEditor の継承関係図
org.mitre.openid.connect.config.JWKSetEditor 連携図
公開メンバ関数
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
}
このクラス詳解は次のファイルから抽出されました:
D:/AppData/OpenId/mitreid-connect/src/openid-connect-common/src/main/java/org/mitre/openid/connect/config/
JWKSetEditor.java
2018年09月27日(木) 21時26分35秒作成 - mitreid-connect / 構成:
1.8.13