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

org.elasticsearch.xpack.core.watcher.watch.Payload Maven / Gradle / Ivy

There is a newer version: 8.13.2
Show newest version
/*
 * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
 * or more contributor license agreements. Licensed under the Elastic License
 * 2.0; you may not use this file except in compliance with the Elastic License
 * 2.0.
 */
package org.elasticsearch.xpack.core.watcher.watch;

import org.elasticsearch.common.collect.MapBuilder;
import org.elasticsearch.common.xcontent.ToXContentObject;
import org.elasticsearch.common.xcontent.XContentBuilder;

import java.io.IOException;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;

import static org.elasticsearch.xpack.core.watcher.support.WatcherUtils.responseToData;

public interface Payload extends ToXContentObject {

    Simple EMPTY = new Simple(Collections.emptyMap());

    Map data();

    class Simple implements Payload {

        private final Map data;

        public Simple() {
            this(new HashMap<>());
        }

        public Simple(String key, Object value) {
            this(new MapBuilder().put(key, value).map());
        }

        public Simple(Map data) {
            this.data = data;
        }

        @Override
        public Map data() {
            return data;
        }

        @Override
        public XContentBuilder toXContent(XContentBuilder builder, Params params) throws IOException {
            return builder.map(data);
        }

        @Override
        public boolean equals(Object o) {
            if (this == o) return true;
            if (o == null || getClass() != o.getClass()) return false;

            Simple simple = (Simple) o;

            if (data.equals(simple.data) == false) return false;

            return true;
        }

        @Override
        public int hashCode() {
            return data.hashCode();
        }

        @Override
        public String toString() {
            return "simple[" + Objects.toString(data) + "]";
        }
    }

    class XContent extends Simple {
        public XContent(ToXContentObject response, Params params) throws IOException {
            super(responseToData(response, params));
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy