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

Definition at line 132 of file TestEntity.java.

132  {
133  if (this == o) return true;
134  if (o == null || getClass() != o.getClass()) return false;
135 
136  TestEntity that = (TestEntity) o;
137 
138  if (clockValue != null ? !clockValue.equals(that.clockValue) : that.clockValue != null) return false;
139  if (decision != that.decision) return false;
140  if (description != null ? !description.equals(that.description) : that.description != null) return false;
141  if (id != null ? !id.equals(that.id) : that.id != null) return false;
142  if (load != null ? !load.equals(that.load) : that.load != null) return false;
143  if (name != null ? !name.equals(that.name) : that.name != null) return false;
144  if (startDate != null ? !startDate.equals(that.startDate) : that.startDate != null) return false;
145  if (taskDataDto != null ? !taskDataDto.equals(that.taskDataDto) : that.taskDataDto != null) return false;
146  if (terminationStrategy != null ? !terminationStrategy.equals(that.terminationStrategy) : that.terminationStrategy != null)
147  return false;
148  if (testExecutionStatus != that.testExecutionStatus) return false;
149  if (testGroupIndex != null ? !testGroupIndex.equals(that.testGroupIndex) : that.testGroupIndex != null)
150  return false;
151 
152  return true;
153  }