keycloak
公開メンバ関数 | 非公開変数類 | 全メンバ一覧
org.keycloak.representations.account.SessionRepresentation クラス
org.keycloak.representations.account.SessionRepresentation 連携図
Collaboration graph

公開メンバ関数

String getId ()
 
void setId (String id)
 
String getIpAddress ()
 
void setIpAddress (String ipAddress)
 
int getStarted ()
 
void setStarted (int started)
 
int getLastAccess ()
 
void setLastAccess (int lastAccess)
 
int getExpires ()
 
void setExpires (int expires)
 
List< ClientRepresentationgetClients ()
 
void setClients (List< ClientRepresentation > clients)
 

非公開変数類

String id
 
String ipAddress
 
int started
 
int lastAccess
 
int expires
 
List< ClientRepresentationclients
 

詳解

Created by st on 29/03/17.

関数詳解

◆ getClients()

List<ClientRepresentation> org.keycloak.representations.account.SessionRepresentation.getClients ( )
inline
57  {
58  return clients;
59  }
List< ClientRepresentation > clients
Definition: SessionRepresentation.java:15

◆ getExpires()

int org.keycloak.representations.account.SessionRepresentation.getExpires ( )
inline
49  {
50  return expires;
51  }
int expires
Definition: SessionRepresentation.java:14

◆ getId()

String org.keycloak.representations.account.SessionRepresentation.getId ( )
inline
17  {
18  return id;
19  }
String id
Definition: SessionRepresentation.java:10

◆ getIpAddress()

String org.keycloak.representations.account.SessionRepresentation.getIpAddress ( )
inline
25  {
26  return ipAddress;
27  }
String ipAddress
Definition: SessionRepresentation.java:11

◆ getLastAccess()

int org.keycloak.representations.account.SessionRepresentation.getLastAccess ( )
inline
41  {
42  return lastAccess;
43  }
int lastAccess
Definition: SessionRepresentation.java:13

◆ getStarted()

int org.keycloak.representations.account.SessionRepresentation.getStarted ( )
inline
33  {
34  return started;
35  }
int started
Definition: SessionRepresentation.java:12

◆ setClients()

void org.keycloak.representations.account.SessionRepresentation.setClients ( List< ClientRepresentation clients)
inline
61  {
62  this.clients = clients;
63  }
List< ClientRepresentation > clients
Definition: SessionRepresentation.java:15

◆ setExpires()

void org.keycloak.representations.account.SessionRepresentation.setExpires ( int  expires)
inline
53  {
54  this.expires = expires;
55  }
int expires
Definition: SessionRepresentation.java:14

◆ setId()

void org.keycloak.representations.account.SessionRepresentation.setId ( String  id)
inline
21  {
22  this.id = id;
23  }
String id
Definition: SessionRepresentation.java:10

◆ setIpAddress()

void org.keycloak.representations.account.SessionRepresentation.setIpAddress ( String  ipAddress)
inline
29  {
30  this.ipAddress = ipAddress;
31  }
String ipAddress
Definition: SessionRepresentation.java:11

◆ setLastAccess()

void org.keycloak.representations.account.SessionRepresentation.setLastAccess ( int  lastAccess)
inline
45  {
46  this.lastAccess = lastAccess;
47  }
int lastAccess
Definition: SessionRepresentation.java:13

◆ setStarted()

void org.keycloak.representations.account.SessionRepresentation.setStarted ( int  started)
inline
37  {
38  this.started = started;
39  }
int started
Definition: SessionRepresentation.java:12

メンバ詳解

◆ clients

List<ClientRepresentation> org.keycloak.representations.account.SessionRepresentation.clients
private

◆ expires

int org.keycloak.representations.account.SessionRepresentation.expires
private

◆ id

String org.keycloak.representations.account.SessionRepresentation.id
private

◆ ipAddress

String org.keycloak.representations.account.SessionRepresentation.ipAddress
private

◆ lastAccess

int org.keycloak.representations.account.SessionRepresentation.lastAccess
private

◆ started

int org.keycloak.representations.account.SessionRepresentation.started
private

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