111 if (
this == o)
return true;
112 if (o == null || getClass() != o.getClass())
return false;
114 EventRepresentation that = (EventRepresentation) o;
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);
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