mitreid-connect
公開メンバ関数 | 静的公開変数類 | 非公開変数類 | 全メンバ一覧
org.mitre.openid.connect.web.JWKSetPublishingEndpoint クラス
org.mitre.openid.connect.web.JWKSetPublishingEndpoint 連携図
Collaboration graph

公開メンバ関数

String getJwk (Model m)
 
JWTSigningAndValidationService getJwtService ()
 
void setJwtService (JWTSigningAndValidationService jwtService)
 

静的公開変数類

static final String URL = "jwk"
 

非公開変数類

JWTSigningAndValidationService jwtService
 

詳解

関数詳解

◆ getJwk()

String org.mitre.openid.connect.web.JWKSetPublishingEndpoint.getJwk ( Model  m)
inline
41  {
42 
43  // map from key id to key
44  Map<String, JWK> keys = jwtService.getAllPublicKeys();
45 
46  // TODO: check if keys are empty, return a 404 here or just an empty list?
47 
48  m.addAttribute("keys", keys);
49 
50  return JWKSetView.VIEWNAME;
51  }
JWTSigningAndValidationService jwtService
Definition: JWKSetPublishingEndpoint.java:38

◆ getJwtService()

JWTSigningAndValidationService org.mitre.openid.connect.web.JWKSetPublishingEndpoint.getJwtService ( )
inline
戻り値
the jwtService
56  {
57  return jwtService;
58  }
JWTSigningAndValidationService jwtService
Definition: JWKSetPublishingEndpoint.java:38

◆ setJwtService()

void org.mitre.openid.connect.web.JWKSetPublishingEndpoint.setJwtService ( JWTSigningAndValidationService  jwtService)
inline
引数
jwtServicethe jwtService to set
63  {
64  this.jwtService = jwtService;
65  }
JWTSigningAndValidationService jwtService
Definition: JWKSetPublishingEndpoint.java:38

メンバ詳解

◆ jwtService

JWTSigningAndValidationService org.mitre.openid.connect.web.JWKSetPublishingEndpoint.jwtService
private

◆ URL

final String org.mitre.openid.connect.web.JWKSetPublishingEndpoint.URL = "jwk"
static

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