All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dell.cpsd.hal.data.provider.api.CancelDataProviderWork Maven / Gradle / Ivy


package com.dell.cpsd.hal.data.provider.api;

import java.util.Date;
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;


/**
 * CancelDataProviderWork
 * 

* * */ @JsonInclude(JsonInclude.Include.NON_NULL) @Message(value = "com.dell.cpsd.hal.cancel.data.provider.work", version = "1.0") @JsonPropertyOrder({ "timestamp", "requestId", "trackingId" }) public class CancelDataProviderWork { /** * * (Required) * */ @JsonProperty("timestamp") private Date timestamp; /** * * (Required) * */ @JsonProperty("requestId") private String requestId; /** * * (Required) * */ @JsonProperty("trackingId") private String trackingId; /** * No args constructor for use in serialization * */ public CancelDataProviderWork() { } /** * * @param requestId * @param timestamp * @param trackingId */ public CancelDataProviderWork(Date timestamp, String requestId, String trackingId) { super(); this.timestamp = timestamp; this.requestId = requestId; this.trackingId = trackingId; } /** * * (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; } @Override public String toString() { return ToStringBuilder.reflectionToString(this); } @Override public int hashCode() { return new HashCodeBuilder().append(timestamp).append(requestId).append(trackingId).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof CancelDataProviderWork) == false) { return false; } CancelDataProviderWork rhs = ((CancelDataProviderWork) other); return new EqualsBuilder().append(timestamp, rhs.timestamp).append(requestId, rhs.requestId).append(trackingId, rhs.trackingId).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy