Jagger
 All Classes Namespaces Files Functions Variables Enumerator Groups Pages
boolean com.griddynamics.jagger.engine.e1.services.data.service.SessionEntity.equals ( Object  o)

Definition at line 95 of file SessionEntity.java.

95  {
96  if (this == o) {
97  return true;
98  }
99  if (o == null || getClass() != o.getClass()) {
100  return false;
101  }
102 
103  SessionEntity that = (SessionEntity) o;
104 
105  if (comment != null ? !comment.equals(that.comment) : that.comment != null) {
106  return false;
107  }
108  if (endDate != null ? !endDate.equals(that.endDate) : that.endDate != null) {
109  return false;
110  }
111  if (id != null ? !id.equals(that.id) : that.id != null) {
112  return false;
113  }
114  if (kernels != null ? !kernels.equals(that.kernels) : that.kernels != null) {
115  return false;
116  }
117  if (startDate != null ? !startDate.equals(that.startDate) : that.startDate != null) {
118  return false;
119  }
120 
121  return true;
122  }