|
|
|
@ -44,6 +44,7 @@ public class Operation implements Serializable {
|
|
|
|
|
private boolean isEnabled;
|
|
|
|
|
private Object payLoad;
|
|
|
|
|
private String operationResponse;
|
|
|
|
|
private String activityId;
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean equals(Object o) {
|
|
|
|
@ -191,6 +192,14 @@ public class Operation implements Serializable {
|
|
|
|
|
this.operationResponse = operationResponse;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public String getActivityId() {
|
|
|
|
|
return activityId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setActivityId(String activityId) {
|
|
|
|
|
this.activityId = activityId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return "Operation{" +
|
|
|
|
|