org.graylog2.lookup.events.LookupTablesUpdated Maven / Gradle / Ivy
/*
* 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.graylog2.lookup.events;
import com.google.auto.value.AutoValue;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonProperty;
import org.graylog2.lookup.dto.LookupTableDto;
import java.util.Collection;
import java.util.Collections;
import java.util.Set;
import java.util.stream.Collectors;
@AutoValue
public abstract class LookupTablesUpdated {
@JsonProperty("lookup_table_ids")
public abstract Set lookupTableIds();
@JsonProperty("lookup_table_names")
public abstract Set lookupTableNames();
@JsonCreator
public static LookupTablesUpdated create(@JsonProperty("lookup_table_ids") Set lookupTableIds,
@JsonProperty("lookup_table_names") Set lookupTableNames) {
return new AutoValue_LookupTablesUpdated(lookupTableIds, lookupTableNames);
}
public static LookupTablesUpdated create(LookupTableDto dto) {
return create(Collections.singleton(dto.id()), Collections.singleton(dto.name()));
}
public static LookupTablesUpdated create(Collection dtos) {
return create(dtos.stream().map(LookupTableDto::id).collect(Collectors.toSet()),
dtos.stream().map(LookupTableDto::name).collect(Collectors.toSet()));
}
}