com.dell.cpsd.hal.data.provider.api.DataProviderWorkFailed Maven / Gradle / Ivy
package com.dell.cpsd.hal.data.provider.api;
import java.util.ArrayList;
import java.util.Date;
import java.util.List;
import com.dell.cpsd.common.rabbitmq.annotation.Message;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
* DataProviderWorkFailed
*
*
*
*/
@JsonInclude(JsonInclude.Include.NON_NULL)
@Message(value = "com.dell.cpsd.hal.data.provider.work.failed", version = "1.0")
@JsonPropertyOrder({
"timestamp",
"requestId",
"trackingId",
"failureReasons"
})
public class DataProviderWorkFailed {
/**
*
* (Required)
*
*/
@JsonProperty("timestamp")
private Date timestamp;
/**
*
* (Required)
*
*/
@JsonProperty("requestId")
private String requestId;
/**
*
* (Required)
*
*/
@JsonProperty("trackingId")
private String trackingId;
/**
*
* (Required)
*
*/
@JsonProperty("failureReasons")
private List failureReasons = new ArrayList();
/**
* No args constructor for use in serialization
*
*/
public DataProviderWorkFailed() {
}
/**
*
* @param requestId
* @param failureReasons
* @param timestamp
* @param trackingId
*/
public DataProviderWorkFailed(Date timestamp, String requestId, String trackingId, List failureReasons) {
super();
this.timestamp = timestamp;
this.requestId = requestId;
this.trackingId = trackingId;
this.failureReasons = failureReasons;
}
/**
*
* (Required)
*
* @return
* The timestamp
*/
@JsonProperty("timestamp")
public Date getTimestamp() {
return timestamp;
}
/**
*
* (Required)
*
* @param timestamp
* The timestamp
*/
@JsonProperty("timestamp")
public void setTimestamp(Date timestamp) {
this.timestamp = timestamp;
}
/**
*
* (Required)
*
* @return
* The requestId
*/
@JsonProperty("requestId")
public String getRequestId() {
return requestId;
}
/**
*
* (Required)
*
* @param requestId
* The requestId
*/
@JsonProperty("requestId")
public void setRequestId(String requestId) {
this.requestId = requestId;
}
/**
*
* (Required)
*
* @return
* The trackingId
*/
@JsonProperty("trackingId")
public String getTrackingId() {
return trackingId;
}
/**
*
* (Required)
*
* @param trackingId
* The trackingId
*/
@JsonProperty("trackingId")
public void setTrackingId(String trackingId) {
this.trackingId = trackingId;
}
/**
*
* (Required)
*
* @return
* The failureReasons
*/
@JsonProperty("failureReasons")
public List getFailureReasons() {
return failureReasons;
}
/**
*
* (Required)
*
* @param failureReasons
* The failureReasons
*/
@JsonProperty("failureReasons")
public void setFailureReasons(List failureReasons) {
this.failureReasons = failureReasons;
}
@Override
public String toString() {
return ToStringBuilder.reflectionToString(this);
}
@Override
public int hashCode() {
return new HashCodeBuilder().append(timestamp).append(requestId).append(trackingId).append(failureReasons).toHashCode();
}
@Override
public boolean equals(Object other) {
if (other == this) {
return true;
}
if ((other instanceof DataProviderWorkFailed) == false) {
return false;
}
DataProviderWorkFailed rhs = ((DataProviderWorkFailed) other);
return new EqualsBuilder().append(timestamp, rhs.timestamp).append(requestId, rhs.requestId).append(trackingId, rhs.trackingId).append(failureReasons, rhs.failureReasons).isEquals();
}
}