org.graylog2.restclient.models.Notification.java Source code

Java tutorial

Introduction

Here is the source code for org.graylog2.restclient.models.Notification.java

Source

/**
 * This file is part of Graylog.
 *
 * Graylog is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Graylog 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
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with Graylog.  If not, see <http://www.gnu.org/licenses/>.
 */
package org.graylog2.restclient.models;

import org.graylog2.restclient.models.api.responses.system.NotificationSummaryResponse;
import org.joda.time.DateTime;

import java.util.Map;

public class Notification {

    public enum Type {
        DEFLECTOR_EXISTS_AS_INDEX, MULTI_MASTER, NO_MASTER, ES_OPEN_FILES, NO_INPUT_RUNNING, INPUT_FAILED_TO_START, CHECK_SERVER_CLOCKS, OUTDATED_VERSION, EMAIL_TRANSPORT_CONFIGURATION_INVALID, EMAIL_TRANSPORT_FAILED, STREAM_PROCESSING_DISABLED, GC_TOO_LONG, JOURNAL_UTILIZATION_TOO_HIGH, JOURNAL_UNCOMMITTED_MESSAGES_DELETED, OUTPUT_DISABLED;

        public static Type fromString(String name) {
            return valueOf(name.toUpperCase());
        }
    }

    public enum Severity {
        NORMAL, URGENT
    }

    private final Type type;
    private final DateTime timestamp;
    private final Severity severity;
    private final String nodeId;
    private final Map<String, Object> details;

    public Notification(NotificationSummaryResponse x) {
        this.type = Type.valueOf(x.type.toUpperCase());
        this.timestamp = DateTime.parse(x.timestamp);
        this.severity = Severity.valueOf(x.severity.toUpperCase());
        this.nodeId = x.node_id;
        this.details = x.details;
    }

    public Type getType() {
        return type;
    }

    public DateTime getTimestamp() {
        return timestamp;
    }

    public String getNodeId() {
        return this.nodeId;
    }

    public Map<String, Object> getDetails() {
        return details;
    }

    public Object getDetail(String id) {
        if (details == null) {
            return null;
        }

        return details.get(id);
    }

    public Severity getSeverity() {
        return severity;
    }
}