org.graylog2.notifications.NotificationService 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.notifications;
import org.graylog2.cluster.Node;
import org.graylog2.plugin.database.PersistedService;
import javax.annotation.Nullable;
import java.util.List;
import java.util.Optional;
/**
* @author Dennis Oelkers
*/
public interface NotificationService extends PersistedService {
Notification build();
Notification buildNow();
boolean fixed(Notification.Type type);
boolean fixed(Notification.Type type, String key);
boolean fixed(Notification.Type type, Node node);
boolean isFirst(Notification.Type type);
List all();
Optional getByTypeAndKey(Notification.Type type, @Nullable String key);
boolean publishIfFirst(Notification notification);
boolean fixed(Notification notification);
int destroyAllByType(Notification.Type type);
int destroyAllByTypeAndKey(Notification.Type type, @Nullable String key);
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy