org.eclipse.ditto.wot.model.ImmutableUriVariables Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-wot-model Show documentation
Show all versions of ditto-wot-model Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
/*
* Copyright (c) 2022 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.wot.model;
import static org.eclipse.ditto.base.model.common.ConditionChecker.checkNotNull;
import java.util.AbstractMap;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.eclipse.ditto.json.JsonCollectors;
import org.eclipse.ditto.json.JsonField;
import org.eclipse.ditto.json.JsonObject;
/**
* Immutable implementation of {@link UriVariables}.
*/
@Immutable
final class ImmutableUriVariables extends AbstractMap implements UriVariables {
private final Map uriVariables;
ImmutableUriVariables(final Map uriVariables) {
this.uriVariables =
Collections.unmodifiableMap(new LinkedHashMap<>(checkNotNull(uriVariables, "uriVariables")));
}
@Override
public Set> entrySet() {
return uriVariables.entrySet();
}
@Override
public JsonObject toJson() {
return uriVariables.entrySet().stream()
.map(e -> JsonField.newInstance(e.getKey(), e.getValue().toJson()))
.collect(JsonCollectors.fieldsToObject());
}
@Override
public boolean equals(@Nullable final Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
if (!super.equals(o)) {
return false;
}
final ImmutableUriVariables that = (ImmutableUriVariables) o;
return Objects.equals(uriVariables, that.uriVariables);
}
@Override
public int hashCode() {
return Objects.hash(uriVariables);
}
@Override
public String toString() {
return getClass().getSimpleName() + "[" +
"uriVariables=" + uriVariables +
"]";
}
}