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

com.dell.cpsd.hal.data.provider.api.DataProviderWorkRejected 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;


/**
 * DataProviderWorkRejected
 * 

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





© 2015 - 2025 Weber Informatics LLC | Privacy Policy