org.eclipse.ditto.internal.utils.pekko.PingCommandResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ditto-internal-utils-pekko Show documentation
Show all versions of ditto-internal-utils-pekko 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.internal.utils.pekko;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;
import org.eclipse.ditto.json.JsonFactory;
import org.eclipse.ditto.json.JsonFieldDefinition;
import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.json.JsonObjectBuilder;
import org.eclipse.ditto.json.JsonValue;
import org.eclipse.ditto.base.model.json.Jsonifiable;
/**
* Internal simple "ping" command response which is Jsonifiable, has an optional correlationId and optionally payload.
*/
@Immutable
public final class PingCommandResponse implements Jsonifiable {
@Nullable private final String correlationId;
@Nullable private final JsonValue payload;
private PingCommandResponse(@Nullable final String correlationId, @Nullable final JsonValue payload) {
this.correlationId = correlationId;
this.payload = payload;
}
/**
* Returns a new {@link PingCommandResponse} instance.
*
* @param correlationId an optional identifier correlating a PingCommand to a PingCommandResponse.
* @param payload optional payload to transmit with the PingCommand.
* @return the new PingCommandResponse instance.
*/
public static PingCommandResponse of(@Nullable final String correlationId,
@Nullable final JsonValue payload) {
return new PingCommandResponse(correlationId, payload);
}
/**
* Creates a new {@link PingCommandResponse} from a JSON string.
*
* @param jsonString the JSON string of which a new PingCommandResponse is to be created.
* @return the PingCommandResponse which was created from the given JSON string.
* @throws NullPointerException if {@code jsonString} is {@code null}.
* @throws IllegalArgumentException if {@code jsonString} is empty.
* @throws org.eclipse.ditto.json.JsonParseException if the passed in {@code jsonString} does not contain a JSON
* object or if it is not valid JSON.
* @throws org.eclipse.ditto.json.JsonMissingFieldException if the passed in {@code jsonString} was not in the
* expected 'PingCommandResponse' format.
*/
public static PingCommandResponse fromJson(final String jsonString) {
return fromJson(JsonFactory.newObject(jsonString));
}
/**
* Creates a new {@link PingCommandResponse} from a JSON object.
*
* @param jsonObject the JSON object of which a new PingCommandResponse is to be created.
* @return the PingCommandResponse which was created from the given JSON object.
* @throws NullPointerException if {@code jsonObject} is {@code null}.
* @throws IllegalArgumentException if {@code jsonObject} is empty.
* @throws org.eclipse.ditto.json.JsonParseException if the passed in {@code jsonObject} is not valid JSON.
* @throws org.eclipse.ditto.json.JsonMissingFieldException if the passed in {@code jsonObject} was not in the
* expected 'PingCommandResponse' format.
*/
public static PingCommandResponse fromJson(final JsonObject jsonObject) {
final String extractedCorrelationId = jsonObject.getValue(JsonFields.CORRELATION_ID).orElse(null);
final JsonValue extractedPayload = jsonObject.getValue(JsonFields.PAYLOAD).orElse(null);
return of(extractedCorrelationId, extractedPayload);
}
/**
* Returns the optional correlationId.
*
* @return the optional correlationId.
*/
public Optional getCorrelationId() {
return Optional.ofNullable(correlationId);
}
/**
* Returns the optional JSON payload.
*
* @return the optional JSON payload .
*/
public Optional getPayload() {
return Optional.ofNullable(payload);
}
@Override
public JsonObject toJson() {
final JsonObjectBuilder jsonObjectBuilder = JsonFactory.newObjectBuilder();
if (null != correlationId) {
jsonObjectBuilder.set(JsonFields.CORRELATION_ID, correlationId);
}
if (null != payload) {
jsonObjectBuilder.set(JsonFields.PAYLOAD, payload);
}
return jsonObjectBuilder.build();
}
@Override
public boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
final PingCommandResponse that = (PingCommandResponse) o;
return Objects.equals(correlationId, that.correlationId) &&
Objects.equals(payload, that.payload);
}
@Override
public int hashCode() {
return Objects.hash(correlationId, payload);
}
@Override
public String toString() {
return getClass().getSimpleName() + " [" +
"correlationId=" + correlationId +
", payload=" + payload +
"]";
}
/**
* An enumeration of the known {@link JsonFieldDefinition}s of a PingCommandResponse.
*/
@Immutable
public static final class JsonFields {
/**
* JSON field containing the correlationId.
*/
static final JsonFieldDefinition CORRELATION_ID = JsonFactory.newStringFieldDefinition("correlationId");
/**
* JSON field containing optional payload.
*/
static final JsonFieldDefinition PAYLOAD = JsonFactory.newJsonValueFieldDefinition("payload");
private JsonFields() {
throw new AssertionError();
}
}
}