io.micronaut.http.server.exceptions.response.DefaultErrorContext Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of micronaut-http-server Show documentation
Show all versions of micronaut-http-server Show documentation
Core components supporting the Micronaut Framework
/*
* Copyright 2017-2021 original authors
*
* 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
*
* https://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 io.micronaut.http.server.exceptions.response;
import io.micronaut.core.annotation.Internal;
import io.micronaut.core.annotation.NonNull;
import io.micronaut.core.annotation.Nullable;
import io.micronaut.http.HttpRequest;
import java.util.ArrayList;
import java.util.List;
import java.util.Optional;
@Internal
final class DefaultErrorContext implements ErrorContext {
private final HttpRequest> request;
private final Throwable cause;
private final List jsonErrors;
private DefaultErrorContext(@NonNull HttpRequest> request,
@Nullable Throwable cause,
@NonNull List jsonErrors) {
this.request = request;
this.cause = cause;
this.jsonErrors = jsonErrors;
}
@Override
@NonNull
public HttpRequest> getRequest() {
return request;
}
@Override
@NonNull
public Optional getRootCause() {
return Optional.ofNullable(cause);
}
@Override
@NonNull
public List getErrors() {
return jsonErrors;
}
/**
* Creates a context builder for this implementation.
*
* @param request The request
* @return A new builder
*/
public static Builder builder(@NonNull HttpRequest> request) {
return new Builder(request);
}
private static final class Builder implements ErrorContext.Builder {
private final HttpRequest> request;
private Throwable cause;
private final List jsonErrors = new ArrayList<>();
private Builder(@NonNull HttpRequest> request) {
this.request = request;
}
@Override
@NonNull
public Builder cause(@Nullable Throwable cause) {
this.cause = cause;
return this;
}
@Override
@NonNull
public Builder errorMessage(@NonNull String message) {
jsonErrors.add(() -> message);
return this;
}
@Override
@NonNull
public Builder error(@NonNull Error error) {
jsonErrors.add(error);
return this;
}
@Override
@NonNull
public Builder errorMessages(@NonNull List errors) {
for (String error: errors) {
errorMessage(error);
}
return this;
}
@Override
@NonNull
public Builder errors(@NonNull List errors) {
jsonErrors.addAll(errors);
return this;
}
@Override
@NonNull
public ErrorContext build() {
return new DefaultErrorContext(request, cause, jsonErrors);
}
}
}