org.eclipse.ditto.internal.models.streaming.AbstractEntityIdWithRevision Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-internal-models-streaming Show documentation
Show all versions of ditto-internal-models-streaming Show documentation
Eclipse Ditto is a framework for creating and managing digital twins in the IoT.
The newest version!
/*
* Copyright (c) 2017 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.internal.models.streaming;
import static org.eclipse.ditto.base.model.common.ConditionChecker.checkNotNull;
import java.util.Objects;
import javax.annotation.concurrent.Immutable;
import org.eclipse.ditto.json.JsonFactory;
import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.base.model.entity.id.EntityId;
/**
* Abstract base implementation of {@link EntityIdWithRevision}.
*/
@Immutable
public abstract class AbstractEntityIdWithRevision implements EntityIdWithRevision {
private final I id;
private final long revision;
protected AbstractEntityIdWithRevision(final I id, final long revision) {
this.id = checkNotNull(id, "entity ID");
this.revision = revision;
}
@Override
public I getEntityId() {
return id;
}
@Override
public long getRevision() {
return revision;
}
@Override
public JsonObject toJson() {
return JsonFactory.newObjectBuilder()
.set(JsonFields.ENTITY_TYPE, id.getEntityType().toString())
.set(JsonFields.ENTITY_ID, String.valueOf(id))
.set(JsonFields.REVISION, revision)
.build();
}
@Override
public int hashCode() {
return Objects.hash(id, revision);
}
@SuppressWarnings({"squid:MethodCyclomaticComplexity", "squid:S1067", "pmd:SimplifyConditional"})
@Override
public boolean equals(final Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
final AbstractEntityIdWithRevision> that = (AbstractEntityIdWithRevision>) obj;
return Objects.equals(id, that.id) && Objects.equals(revision, that.revision);
}
@Override
public String toString() {
return getClass().getSimpleName() + " [" + "id=" + id + ", revision=" + revision + "]";
}
}