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

org.graylog.plugins.pipelineprocessor.events.PipelinesChangedEvent Maven / Gradle / Ivy

There is a newer version: 6.0.1
Show newest version
/*
 * Copyright (C) 2020 Graylog, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the Server Side Public License, version 1,
 * as published by MongoDB, Inc.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * Server Side Public License for more details.
 *
 * You should have received a copy of the Server Side Public License
 * along with this program. If not, see
 * .
 */
package org.graylog.plugins.pipelineprocessor.events;

import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.google.auto.value.AutoValue;
import com.google.common.collect.Sets;

import java.util.Set;

import static java.util.Collections.emptySet;

@AutoValue
public abstract class PipelinesChangedEvent {

    @JsonProperty
    public abstract Set deletedPipelineIds();

    @JsonProperty
    public abstract Set updatedPipelineIds();

    public static Builder builder() {
        return new AutoValue_PipelinesChangedEvent.Builder().deletedPipelineIds(emptySet()).updatedPipelineIds(emptySet());
    }

    public static PipelinesChangedEvent updatedPipelineId(String id) {
        return builder().updatedPipelineId(id).build();
    }

    public static PipelinesChangedEvent deletedPipelineId(String id) {
        return builder().deletedPipelineId(id).build();
    }

    @JsonCreator
    public static PipelinesChangedEvent create(@JsonProperty("deleted_pipeline_ids") Set deletedIds, @JsonProperty("updated_pipeline_ids") Set updatedIds) {
        return builder().deletedPipelineIds(deletedIds).updatedPipelineIds(updatedIds).build();
    }

    @AutoValue.Builder
    public abstract static class Builder {
        public abstract Builder deletedPipelineIds(Set ids);
        public Builder deletedPipelineId(String id) {
            return deletedPipelineIds(Sets.newHashSet(id));
        }
        public abstract Builder updatedPipelineIds(Set ids);
        public Builder updatedPipelineId(String id) {
            return updatedPipelineIds(Sets.newHashSet(id));
        }
        public abstract PipelinesChangedEvent build();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy