Interface ErrorResponse
- All Known Subinterfaces:
AuthErrorResponse
,ProductSearchErrorResponse
public interface ErrorResponse
Base representation of an error response containing common fields to all errors.
Example to create an instance using the builder pattern
ErrorResponse errorResponse = ErrorResponse.builder()
.statusCode(1)
.message("{message}")
.build()
-
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorResponseBuilder
builder()
builder factory method for ErrorResponsestatic ErrorResponseBuilder
builder
(ErrorResponse template) create builder for ErrorResponse instancestatic ErrorResponse
deepCopy
(ErrorResponse template) factory method to create a deep copy of ErrorResponse@Valid List<ErrorObject>
Errors returned for a request.@NotNull String
First error message in theerrors
array.@NotNull Integer
HTTP status code corresponding to the error.static ErrorResponse
of()
factory methodstatic ErrorResponse
of
(ErrorResponse template) factory method to create a shallow copy ErrorResponsevoid
setErrors
(ErrorObject... errors) Errors returned for a request.void
setErrors
(List<ErrorObject> errors) Errors returned for a request.void
setMessage
(String message) First error message in theerrors
array.void
setStatusCode
(Integer statusCode) HTTP status code corresponding to the error.static com.fasterxml.jackson.core.type.TypeReference<ErrorResponse>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
withErrorResponse
(Function<ErrorResponse, T> helper) accessor map function
-
Method Details
-
getStatusCode
HTTP status code corresponding to the error.
- Returns:
- statusCode
-
getMessage
First error message in the
errors
array.- Returns:
- message
-
getErrors
Errors returned for a request.
A single error response can contain multiple errors if the errors are related to the same HTTP status code such as
400
.- Returns:
- errors
-
setStatusCode
HTTP status code corresponding to the error.
- Parameters:
statusCode
- value to be set
-
setMessage
First error message in the
errors
array.- Parameters:
message
- value to be set
-
setErrors
Errors returned for a request.
A single error response can contain multiple errors if the errors are related to the same HTTP status code such as
400
.- Parameters:
errors
- values to be set
-
setErrors
Errors returned for a request.
A single error response can contain multiple errors if the errors are related to the same HTTP status code such as
400
.- Parameters:
errors
- values to be set
-
of
factory method- Returns:
- instance of ErrorResponse
-
of
factory method to create a shallow copy ErrorResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
factory method to create a deep copy of ErrorResponse- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for ErrorResponse- Returns:
- builder
-
builder
create builder for ErrorResponse instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withErrorResponse
accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-