All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.eclipse.ditto.wot.model.ImmutableEvent Maven / Gradle / Ivy

Go to download

Eclipse Ditto is a framework for creating and managing digital twins in the IoT.

There is a newer version: 3.6.0
Show newest version
/*
 * 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 java.util.Objects;
import java.util.Optional;

import javax.annotation.Nullable;
import javax.annotation.concurrent.Immutable;

import org.eclipse.ditto.json.JsonObject;
import org.eclipse.ditto.json.JsonValue;

/**
 * Immutable implementation of {@link Event}.
 */
@Immutable
final class ImmutableEvent extends AbstractInteraction implements Event {

    private final String eventName;

    ImmutableEvent(final String eventName, final JsonObject wrappedObject) {
        super(wrappedObject);
        this.eventName = eventName;
    }

    @Override
    public String getEventName() {
        return eventName;
    }

    @Override
    public Optional getSubscription() {
        return wrappedObject.getValue(JsonFields.SUBSCRIPTION)
                .filter(JsonValue::isObject)
                .map(JsonValue::asObject)
                .map(SingleDataSchema::fromJson);
    }

    @Override
    public Optional getData() {
        return wrappedObject.getValue(JsonFields.DATA)
                .filter(JsonValue::isObject)
                .map(JsonValue::asObject)
                .map(SingleDataSchema::fromJson);
    }

    @Override
    public Optional getDataResponse() {
        return wrappedObject.getValue(JsonFields.DATA_RESPONSE)
                .filter(JsonValue::isObject)
                .map(JsonValue::asObject)
                .map(SingleDataSchema::fromJson);
    }

    @Override
    public Optional getCancellation() {
        return wrappedObject.getValue(JsonFields.CANCELLATION)
                .filter(JsonValue::isObject)
                .map(JsonValue::asObject)
                .map(SingleDataSchema::fromJson);
    }

    @Override
    public Optional getForms() {
        return wrappedObject.getValue(InteractionJsonFields.FORMS)
                .map(EventForms::fromJson);
    }

    @Override
    protected Event createInstance(final JsonObject newWrapped) {
        return new ImmutableEvent(eventName, newWrapped);
    }

    @Override
    public boolean equals(@Nullable final Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        final ImmutableEvent that = (ImmutableEvent) o;
        return super.equals(o) && Objects.equals(eventName, that.eventName);
    }

    @Override
    protected boolean canEqual(@Nullable final Object other) {
        return other instanceof ImmutableEvent;
    }

    @Override
    public int hashCode() {
        return Objects.hash(eventName, super.hashCode());
    }

    @Override
    public String toString() {
        return getClass().getSimpleName() + "[" +
                "eventName=" + eventName +
                ", " + super.toString() +
                "]";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy