![JAR search and dependency download from the Maven repository](/logo.png)
org.lockss.laaws.poller.model.ErrorResult Maven / Gradle / Ivy
The newest version!
package org.lockss.laaws.poller.model;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import io.swagger.v3.oas.annotations.media.Schema;
import org.springframework.validation.annotation.Validated;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;
/**
* ErrorResult
*/
@Validated
public class ErrorResult {
@JsonProperty("message")
private String message = null;
@JsonProperty("code")
private Integer code = null;
@JsonProperty("rootCause")
private String rootCause = null;
public ErrorResult message(String message) {
this.message = message;
return this;
}
/**
* Get message
* @return message
**/
@Schema(required = true, description = "")
@NotNull
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public ErrorResult code(Integer code) {
this.code = code;
return this;
}
/**
* Get code
* @return code
**/
@Schema(required = true, description = "")
@NotNull
public Integer getCode() {
return code;
}
public void setCode(Integer code) {
this.code = code;
}
public ErrorResult rootCause(String rootCause) {
this.rootCause = rootCause;
return this;
}
/**
* Get rootCause
* @return rootCause
**/
@Schema(description = "")
public String getRootCause() {
return rootCause;
}
public void setRootCause(String rootCause) {
this.rootCause = rootCause;
}
@Override
public boolean equals(java.lang.Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorResult errorResult = (ErrorResult) o;
return Objects.equals(this.message, errorResult.message) &&
Objects.equals(this.code, errorResult.code) &&
Objects.equals(this.rootCause, errorResult.rootCause);
}
@Override
public int hashCode() {
return Objects.hash(message, code, rootCause);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorResult {\n");
sb.append(" message: ").append(toIndentedString(message)).append("\n");
sb.append(" code: ").append(toIndentedString(code)).append("\n");
sb.append(" rootCause: ").append(toIndentedString(rootCause)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy