keycloak
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData クラス
org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData 連携図
Collaboration graph

公開メンバ関数

String getAuthMethod ()
 
void setAuthMethod (String authMethod)
 
String getRedirectUri ()
 
void setRedirectUri (String redirectUri)
 
Map< String, String > getNotes ()
 
void setNotes (Map< String, String > notes)
 
String getAction ()
 
void setAction (String action)
 
Map< String, String > getUserSessionNotes ()
 
void setUserSessionNotes (Map< String, String > userSessionNotes)
 
Map< String, Object > getExecutionStatus ()
 
void setExecutionStatus (Map< String, Object > executionStatus)
 
Set< String > getRequiredActions ()
 
void setRequiredActions (Set< String > requiredActions)
 
Set< String > getProtocolMappers ()
 
void setProtocolMappers (Set< String > protocolMappers)
 
Set< String > getRoles ()
 
void setRoles (Set< String > roles)
 

非公開変数類

String authMethod
 
String redirectUri
 
Map< String, String > notes
 
String action
 
Map< String, String > userSessionNotes
 
Map< String, Object > executionStatus
 
Set< String > requiredActions
 
Set< String > protocolMappers
 
Set< String > roles
 

詳解

関数詳解

◆ getAction()

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getAction ( )
inline
280  {
281  return action;
282  }
String action
Definition: PersistentAuthenticatedClientSessionAdapter.java:241

◆ getAuthMethod()

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getAuthMethod ( )
inline
256  {
257  return authMethod;
258  }
String authMethod
Definition: PersistentAuthenticatedClientSessionAdapter.java:232

◆ getExecutionStatus()

Map<String, Object> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getExecutionStatus ( )
inline
296  {
297  return executionStatus;
298  }
Map< String, Object > executionStatus
Definition: PersistentAuthenticatedClientSessionAdapter.java:247

◆ getNotes()

Map<String, String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getNotes ( )
inline
272  {
273  return notes;
274  }
Map< String, String > notes
Definition: PersistentAuthenticatedClientSessionAdapter.java:238

◆ getProtocolMappers()

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getProtocolMappers ( )
inline
312  {
313  return protocolMappers;
314  }
Set< String > protocolMappers
Definition: PersistentAuthenticatedClientSessionAdapter.java:251

◆ getRedirectUri()

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getRedirectUri ( )
inline
264  {
265  return redirectUri;
266  }
String redirectUri
Definition: PersistentAuthenticatedClientSessionAdapter.java:235

◆ getRequiredActions()

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getRequiredActions ( )
inline
304  {
305  return requiredActions;
306  }
Set< String > requiredActions
Definition: PersistentAuthenticatedClientSessionAdapter.java:249

◆ getRoles()

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getRoles ( )
inline
320  {
321  return roles;
322  }
Set< String > roles
Definition: PersistentAuthenticatedClientSessionAdapter.java:253

◆ getUserSessionNotes()

Map<String, String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.getUserSessionNotes ( )
inline
288  {
289  return userSessionNotes;
290  }
Map< String, String > userSessionNotes
Definition: PersistentAuthenticatedClientSessionAdapter.java:245

◆ setAction()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setAction ( String  action)
inline
284  {
285  this.action = action;
286  }
String action
Definition: PersistentAuthenticatedClientSessionAdapter.java:241

◆ setAuthMethod()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setAuthMethod ( String  authMethod)
inline
260  {
261  this.authMethod = authMethod;
262  }
String authMethod
Definition: PersistentAuthenticatedClientSessionAdapter.java:232

◆ setExecutionStatus()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setExecutionStatus ( Map< String, Object >  executionStatus)
inline
300  {
302  }
Map< String, Object > executionStatus
Definition: PersistentAuthenticatedClientSessionAdapter.java:247

◆ setNotes()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setNotes ( Map< String, String >  notes)
inline
276  {
277  this.notes = notes;
278  }
Map< String, String > notes
Definition: PersistentAuthenticatedClientSessionAdapter.java:238

◆ setProtocolMappers()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setProtocolMappers ( Set< String >  protocolMappers)
inline
316  {
318  }
Set< String > protocolMappers
Definition: PersistentAuthenticatedClientSessionAdapter.java:251

◆ setRedirectUri()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setRedirectUri ( String  redirectUri)
inline
268  {
269  this.redirectUri = redirectUri;
270  }
String redirectUri
Definition: PersistentAuthenticatedClientSessionAdapter.java:235

◆ setRequiredActions()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setRequiredActions ( Set< String >  requiredActions)
inline
308  {
310  }
Set< String > requiredActions
Definition: PersistentAuthenticatedClientSessionAdapter.java:249

◆ setRoles()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setRoles ( Set< String >  roles)
inline
324  {
325  this.roles = roles;
326  }
Set< String > roles
Definition: PersistentAuthenticatedClientSessionAdapter.java:253

◆ setUserSessionNotes()

void org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.setUserSessionNotes ( Map< String, String >  userSessionNotes)
inline
292  {
294  }
Map< String, String > userSessionNotes
Definition: PersistentAuthenticatedClientSessionAdapter.java:245

メンバ詳解

◆ action

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.action
private

◆ authMethod

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.authMethod
private

◆ executionStatus

Map<String, Object> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.executionStatus
private

◆ notes

Map<String, String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.notes
private

◆ protocolMappers

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.protocolMappers
private

◆ redirectUri

String org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.redirectUri
private

◆ requiredActions

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.requiredActions
private

◆ roles

Set<String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.roles
private

◆ userSessionNotes

Map<String, String> org.keycloak.models.session.PersistentAuthenticatedClientSessionAdapter.PersistentClientSessionData.userSessionNotes
private

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