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

公開メンバ関数

long getTime ()
 
void setTime (long time)
 
String getType ()
 
void setType (String type)
 
String getRealmId ()
 
void setRealmId (String realmId)
 
String getClientId ()
 
void setClientId (String clientId)
 
String getUserId ()
 
void setUserId (String userId)
 
String getSessionId ()
 
void setSessionId (String sessionId)
 
String getIpAddress ()
 
void setIpAddress (String ipAddress)
 
String getError ()
 
void setError (String error)
 
Map< String, String > getDetails ()
 
void setDetails (Map< String, String > details)
 
boolean equals (Object o)
 
int hashCode ()
 

非公開変数類

long time
 
String type
 
String realmId
 
String clientId
 
String userId
 
String sessionId
 
String ipAddress
 
String error
 
Map< String, String > details
 

詳解

著者
Stan Silvert ssilv.nosp@m.ert@.nosp@m.redha.nosp@m.t.co.nosp@m.m (C) 2016 Red Hat Inc.

関数詳解

◆ equals()

boolean org.keycloak.representations.idm.EventRepresentation.equals ( Object  o)
inline
110  {
111  if (this == o) return true;
112  if (o == null || getClass() != o.getClass()) return false;
113 
114  EventRepresentation that = (EventRepresentation) o;
115 
116  if (time != that.time) return false;
117  if (type != null ? !type.equals(that.type) : that.type != null) return false;
118  if (realmId != null ? !realmId.equals(that.realmId) : that.realmId != null) return false;
119  if (clientId != null ? !clientId.equals(that.clientId) : that.clientId != null) return false;
120  if (userId != null ? !userId.equals(that.userId) : that.userId != null) return false;
121  if (sessionId != null ? !sessionId.equals(that.sessionId) : that.sessionId != null) return false;
122  if (ipAddress != null ? !ipAddress.equals(that.ipAddress) : that.ipAddress != null) return false;
123  if (error != null ? !error.equals(that.error) : that.error != null) return false;
124  return !(details != null ? !details.equals(that.details) : that.details != null);
125 
126  }
String ipAddress
Definition: EventRepresentation.java:33
String sessionId
Definition: EventRepresentation.java:32
String realmId
Definition: EventRepresentation.java:29
String clientId
Definition: EventRepresentation.java:30
long time
Definition: EventRepresentation.java:27
Map< String, String > details
Definition: EventRepresentation.java:35
String error
Definition: EventRepresentation.java:34
String type
Definition: EventRepresentation.java:28
String userId
Definition: EventRepresentation.java:31

◆ getClientId()

String org.keycloak.representations.idm.EventRepresentation.getClientId ( )
inline
61  {
62  return clientId;
63  }
String clientId
Definition: EventRepresentation.java:30

◆ getDetails()

Map<String, String> org.keycloak.representations.idm.EventRepresentation.getDetails ( )
inline
101  {
102  return details;
103  }
Map< String, String > details
Definition: EventRepresentation.java:35

◆ getError()

String org.keycloak.representations.idm.EventRepresentation.getError ( )
inline
93  {
94  return error;
95  }
String error
Definition: EventRepresentation.java:34

◆ getIpAddress()

String org.keycloak.representations.idm.EventRepresentation.getIpAddress ( )
inline
85  {
86  return ipAddress;
87  }
String ipAddress
Definition: EventRepresentation.java:33

◆ getRealmId()

String org.keycloak.representations.idm.EventRepresentation.getRealmId ( )
inline
53  {
54  return realmId;
55  }
String realmId
Definition: EventRepresentation.java:29

◆ getSessionId()

String org.keycloak.representations.idm.EventRepresentation.getSessionId ( )
inline
77  {
78  return sessionId;
79  }
String sessionId
Definition: EventRepresentation.java:32

◆ getTime()

long org.keycloak.representations.idm.EventRepresentation.getTime ( )
inline
37  {
38  return time;
39  }
long time
Definition: EventRepresentation.java:27

◆ getType()

String org.keycloak.representations.idm.EventRepresentation.getType ( )
inline
45  {
46  return type;
47  }
String type
Definition: EventRepresentation.java:28

◆ getUserId()

String org.keycloak.representations.idm.EventRepresentation.getUserId ( )
inline
69  {
70  return userId;
71  }
String userId
Definition: EventRepresentation.java:31

◆ hashCode()

int org.keycloak.representations.idm.EventRepresentation.hashCode ( )
inline
129  {
130  int result = (int) (time ^ (time >>> 32));
131  result = 31 * result + (type != null ? type.hashCode() : 0);
132  result = 31 * result + (realmId != null ? realmId.hashCode() : 0);
133  result = 31 * result + (clientId != null ? clientId.hashCode() : 0);
134  result = 31 * result + (userId != null ? userId.hashCode() : 0);
135  result = 31 * result + (sessionId != null ? sessionId.hashCode() : 0);
136  result = 31 * result + (ipAddress != null ? ipAddress.hashCode() : 0);
137  result = 31 * result + (error != null ? error.hashCode() : 0);
138  result = 31 * result + (details != null ? details.hashCode() : 0);
139  return result;
140  }
String ipAddress
Definition: EventRepresentation.java:33
String sessionId
Definition: EventRepresentation.java:32
String realmId
Definition: EventRepresentation.java:29
String clientId
Definition: EventRepresentation.java:30
long time
Definition: EventRepresentation.java:27
Map< String, String > details
Definition: EventRepresentation.java:35
String error
Definition: EventRepresentation.java:34
String type
Definition: EventRepresentation.java:28
String userId
Definition: EventRepresentation.java:31

◆ setClientId()

void org.keycloak.representations.idm.EventRepresentation.setClientId ( String  clientId)
inline
65  {
66  this.clientId = clientId;
67  }
String clientId
Definition: EventRepresentation.java:30

◆ setDetails()

void org.keycloak.representations.idm.EventRepresentation.setDetails ( Map< String, String >  details)
inline
105  {
106  this.details = details;
107  }
Map< String, String > details
Definition: EventRepresentation.java:35

◆ setError()

void org.keycloak.representations.idm.EventRepresentation.setError ( String  error)
inline
97  {
98  this.error = error;
99  }
String error
Definition: EventRepresentation.java:34

◆ setIpAddress()

void org.keycloak.representations.idm.EventRepresentation.setIpAddress ( String  ipAddress)
inline
89  {
90  this.ipAddress = ipAddress;
91  }
String ipAddress
Definition: EventRepresentation.java:33

◆ setRealmId()

void org.keycloak.representations.idm.EventRepresentation.setRealmId ( String  realmId)
inline
57  {
58  this.realmId = realmId;
59  }
String realmId
Definition: EventRepresentation.java:29

◆ setSessionId()

void org.keycloak.representations.idm.EventRepresentation.setSessionId ( String  sessionId)
inline
81  {
82  this.sessionId = sessionId;
83  }
String sessionId
Definition: EventRepresentation.java:32

◆ setTime()

void org.keycloak.representations.idm.EventRepresentation.setTime ( long  time)
inline
41  {
42  this.time = time;
43  }
long time
Definition: EventRepresentation.java:27

◆ setType()

void org.keycloak.representations.idm.EventRepresentation.setType ( String  type)
inline
49  {
50  this.type = type;
51  }
String type
Definition: EventRepresentation.java:28

◆ setUserId()

void org.keycloak.representations.idm.EventRepresentation.setUserId ( String  userId)
inline
73  {
74  this.userId = userId;
75  }
String userId
Definition: EventRepresentation.java:31

メンバ詳解

◆ clientId

String org.keycloak.representations.idm.EventRepresentation.clientId
private

◆ details

Map<String, String> org.keycloak.representations.idm.EventRepresentation.details
private

◆ error

String org.keycloak.representations.idm.EventRepresentation.error
private

◆ ipAddress

String org.keycloak.representations.idm.EventRepresentation.ipAddress
private

◆ realmId

String org.keycloak.representations.idm.EventRepresentation.realmId
private

◆ sessionId

String org.keycloak.representations.idm.EventRepresentation.sessionId
private

◆ time

long org.keycloak.representations.idm.EventRepresentation.time
private

◆ type

String org.keycloak.representations.idm.EventRepresentation.type
private

◆ userId

String org.keycloak.representations.idm.EventRepresentation.userId
private

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