mitreid-connect
公開メンバ関数 | 限定公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping クラス
org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping の継承関係図
Inheritance graph
org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping 連携図
Collaboration graph

公開メンバ関数

String getJwkPublishUrl ()
 
void setJwkPublishUrl (String jwkPublishUrl)
 

限定公開メンバ関数

boolean isHandler (Class<?> beanType)
 
RequestMappingInfo getMappingForMethod (Method method, Class<?> handlerType)
 

非公開変数類

String jwkPublishUrl
 

詳解

著者
jricher

関数詳解

◆ getJwkPublishUrl()

String org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping.getJwkPublishUrl ( )
inline
戻り値
the jwkPublishUrl
71  {
72  return jwkPublishUrl;
73  }
String jwkPublishUrl
Definition: ClientKeyPublisherMapping.java:37

◆ getMappingForMethod()

RequestMappingInfo org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping.getMappingForMethod ( Method  method,
Class<?>  handlerType 
)
inlineprotected

Map the "jwkKeyPublish" method to our jwkPublishUrl.

51  {
52 
53  if (method.getName().equals("publishClientJwk") && getJwkPublishUrl() != null) {
54  return new RequestMappingInfo(
55  new PatternsRequestCondition(new String[] {getJwkPublishUrl()}, getUrlPathHelper(), getPathMatcher(), false, false),
56  null,
57  null,
58  null,
59  null,
60  null,
61  null);
62  } else {
63  return null;
64  }
65 
66  }
String getJwkPublishUrl()
Definition: ClientKeyPublisherMapping.java:71

◆ isHandler()

boolean org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping.isHandler ( Class<?>  beanType)
inlineprotected
43  {
44  return beanType.equals(ClientKeyPublisher.class);
45  }

◆ setJwkPublishUrl()

void org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping.setJwkPublishUrl ( String  jwkPublishUrl)
inline
引数
jwkPublishUrlthe jwkPublishUrl to set
78  {
80  }
String jwkPublishUrl
Definition: ClientKeyPublisherMapping.java:37

メンバ詳解

◆ jwkPublishUrl

String org.mitre.openid.connect.client.keypublisher.ClientKeyPublisherMapping.jwkPublishUrl
private

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