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

com.codereligion.bugsnag.logback.model.NotificationVO Maven / Gradle / Ivy

The newest version!
/**
 * Copyright 2014 www.codereligion.com
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package com.codereligion.bugsnag.logback.model;

import com.google.common.collect.Lists;
import java.util.List;

/**
 * Represents a notification being send to the bugsnag api.
 *
 * @author Sebastian Gröbler
 */
public class NotificationVO {

    /**
     * The api key associated with the project. Informs bugsnag which project has generated this error.
     */
    private String apiKey;

    /**
     * This object describes the notifier itself. These properties are used
     * within bugsnag to track error rates from a notifier.
     */
    private NotifierVO notifier = new NotifierVO();

    /**
     * A list of error events that bugsnag should be notified of. In the current version of his notifier
     * the list will contain only one event.
     */
    private List events = Lists.newArrayList();

    public String getApiKey() {
        return apiKey;
    }

    public void setApiKey(final String apiKey) {
        this.apiKey = apiKey;
    }

    public List getEvents() {
        return events;
    }

    public void addEvents(final List events) {
        this.events.addAll(events);
    }

    public NotifierVO getNotifier() {
        return notifier;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy