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

公開メンバ関数

Map< String, String > getOptions (ServerConfiguration server, RegisteredClient client, HttpServletRequest request)
 
Map< String, String > getTokenOptions (ServerConfiguration server, RegisteredClient client, HttpServletRequest request)
 
Map< String, String > getOptions ()
 
void setOptions (Map< String, String > options)
 
Map< String, String > getTokenOptions ()
 
void setTokenOptions (Map< String, String > tokenOptions)
 

非公開変数類

Map< String, String > options = new HashMap<>()
 
Map< String, String > tokenOptions = new HashMap<>()
 

詳解

Always returns the same set of options.

著者
jricher

関数詳解

◆ getOptions() [1/2]

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.getOptions ( ServerConfiguration  server,
RegisteredClient  client,
HttpServletRequest  request 
)
inline

org.mitre.openid.connect.client.service.AuthRequestOptionsServiceを実装しています。

48  {
49  return options;
50  }
Map< String, String > options
Definition: StaticAuthRequestOptionsService.java:41

◆ getOptions() [2/2]

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.getOptions ( )
inline
戻り値
the options object directly
63  {
64  return options;
65  }
Map< String, String > options
Definition: StaticAuthRequestOptionsService.java:41

◆ getTokenOptions() [1/2]

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.getTokenOptions ( ServerConfiguration  server,
RegisteredClient  client,
HttpServletRequest  request 
)
inline

org.mitre.openid.connect.client.service.AuthRequestOptionsServiceを実装しています。

56  {
57  return tokenOptions;
58  }
Map< String, String > tokenOptions
Definition: StaticAuthRequestOptionsService.java:42

◆ getTokenOptions() [2/2]

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.getTokenOptions ( )
inline
戻り値
the tokenOptions
77  {
78  return tokenOptions;
79  }
Map< String, String > tokenOptions
Definition: StaticAuthRequestOptionsService.java:42

◆ setOptions()

void org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.setOptions ( Map< String, String >  options)
inline
引数
optionsthe options to set
70  {
71  this.options = options;
72  }
Map< String, String > options
Definition: StaticAuthRequestOptionsService.java:41

◆ setTokenOptions()

void org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.setTokenOptions ( Map< String, String >  tokenOptions)
inline
引数
tokenOptionsthe tokenOptions to set
84  {
86  }
Map< String, String > tokenOptions
Definition: StaticAuthRequestOptionsService.java:42

メンバ詳解

◆ options

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.options = new HashMap<>()
private

◆ tokenOptions

Map<String, String> org.mitre.openid.connect.client.service.impl.StaticAuthRequestOptionsService.tokenOptions = new HashMap<>()
private

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