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

com.github.ltsopensource.alarm.email.EmailAlarmMessage Maven / Gradle / Ivy

package com.github.ltsopensource.alarm.email;

import com.github.ltsopensource.alarm.AlarmMessage;

/**
 * @author Robert HG ([email protected]) on 2/17/16.
 */
public class EmailAlarmMessage extends AlarmMessage {

    private String to;

    private String title;

    public String getTo() {
        return to;
    }

    public void setTo(String to) {
        this.to = to;
    }

    public String getTitle() {
        return title;
    }

    public void setTitle(String title) {
        this.title = title;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy