org.eclipse.ditto.connectivity.service.config.ConnectionContextProviderMissingException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-connectivity-service Show documentation
Show all versions of ditto-connectivity-service Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
/*
* Copyright (c) 2021 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0
*
* SPDX-License-Identifier: EPL-2.0
*/
package org.eclipse.ditto.connectivity.service.config;
import java.net.URI;
import java.text.MessageFormat;
import java.util.List;
import javax.annotation.Nullable;
import javax.annotation.concurrent.NotThreadSafe;
import org.eclipse.ditto.base.model.common.HttpStatus;
import org.eclipse.ditto.base.model.exceptions.DittoRuntimeException;
import org.eclipse.ditto.base.model.exceptions.DittoRuntimeExceptionBuilder;
import org.eclipse.ditto.base.model.headers.DittoHeaders;
import org.eclipse.ditto.base.model.json.JsonParsableException;
import org.eclipse.ditto.connectivity.model.ConnectivityException;
import org.eclipse.ditto.json.JsonObject;
@JsonParsableException(errorCode = ConnectionContextProviderMissingException.ERROR_CODE)
public final class ConnectionContextProviderMissingException extends DittoRuntimeException
implements ConnectivityException {
public static final String ERROR_CODE = ERROR_CODE_PREFIX + "config.provider.missing";
private static final String MESSAGE_TEMPLATE =
"Failed to find a suitable ConnectionContextProvider implementation in candidates: <{0}>.";
private ConnectionContextProviderMissingException(
final DittoHeaders dittoHeaders, @Nullable final String message,
@Nullable final String description, @Nullable final Throwable cause,
@Nullable final URI href) {
super(ERROR_CODE, HttpStatus.INTERNAL_SERVER_ERROR, dittoHeaders, message, description, cause, href);
}
public static Builder newBuilder(final List> candidates) {
return new Builder(MessageFormat.format(MESSAGE_TEMPLATE, candidates));
}
public static ConnectionContextProviderMissingException fromJson(final JsonObject jsonObject,
final DittoHeaders dittoHeaders) {
return DittoRuntimeException.fromJson(jsonObject, dittoHeaders, new Builder());
}
@Override
public DittoRuntimeException setDittoHeaders(final DittoHeaders dittoHeaders) {
return new Builder()
.message(getMessage())
.description(getDescription().orElse(null))
.cause(getCause())
.href(getHref().orElse(null))
.dittoHeaders(dittoHeaders)
.build();
}
@NotThreadSafe
public static final class Builder extends DittoRuntimeExceptionBuilder {
private Builder() { }
private Builder(final String message) {
message(message);
}
@Override
protected ConnectionContextProviderMissingException doBuild(final DittoHeaders dittoHeaders,
@Nullable final String message,
@Nullable final String description,
@Nullable final Throwable cause,
@Nullable final URI href) {
return new ConnectionContextProviderMissingException(dittoHeaders, message, description, cause, href);
}
}
}