
de.gematik.test.tiger.testenvmgr.api.model.ErrorDto Maven / Gradle / Ivy
/*
*
* Copyright 2024 gematik GmbH
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package de.gematik.test.tiger.testenvmgr.api.model;
import java.net.URI;
import java.util.Objects;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import java.time.OffsetDateTime;
import jakarta.validation.Valid;
import jakarta.validation.constraints.*;
import org.hibernate.validator.constraints.*;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.*;
import jakarta.annotation.Generated;
/**
* Default error object with information about the occurred error
*/
@Schema(name = "Error", description = "Default error object with information about the occurred error")
@JsonTypeName("Error")
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-12-09T12:14:31.265242911+01:00[Europe/Berlin]", comments = "Generator version: 7.10.0")
public class ErrorDto {
private String errorCode;
private String errorMessage;
public ErrorDto() {
super();
}
/**
* Constructor with only required parameters
*/
public ErrorDto(String errorCode, String errorMessage) {
this.errorCode = errorCode;
this.errorMessage = errorMessage;
}
public ErrorDto errorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
/**
* A code identifying this error
* @return errorCode
*/
@NotNull
@Schema(name = "errorCode", description = "A code identifying this error", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("errorCode")
public String getErrorCode() {
return errorCode;
}
public void setErrorCode(String errorCode) {
this.errorCode = errorCode;
}
public ErrorDto errorMessage(String errorMessage) {
this.errorMessage = errorMessage;
return this;
}
/**
* A readable message describing the error
* @return errorMessage
*/
@NotNull
@Schema(name = "errorMessage", description = "A readable message describing the error", requiredMode = Schema.RequiredMode.REQUIRED)
@JsonProperty("errorMessage")
public String getErrorMessage() {
return errorMessage;
}
public void setErrorMessage(String errorMessage) {
this.errorMessage = errorMessage;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ErrorDto error = (ErrorDto) o;
return Objects.equals(this.errorCode, error.errorCode) &&
Objects.equals(this.errorMessage, error.errorMessage);
}
@Override
public int hashCode() {
return Objects.hash(errorCode, errorMessage);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ErrorDto {\n");
sb.append(" errorCode: ").append(toIndentedString(errorCode)).append("\n");
sb.append(" errorMessage: ").append(toIndentedString(errorMessage)).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(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy