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

com.podio.notification.NotificationSettings Maven / Gradle / Ivy

There is a newer version: 0.7.9
Show newest version
package com.podio.notification;

public class NotificationSettings {

	/**
	 * true if digest emails should be sent out, false
	 * otherwise
	 */
	private boolean digest;

	/**
	 * true if direct emails should be sent out, false
	 * otherwise
	 */
	private boolean direct;

	public NotificationSettings() {
		super();
	}

	public NotificationSettings(boolean digest, boolean direct) {
		super();
		this.digest = digest;
		this.direct = direct;
	}

	public boolean isDigest() {
		return digest;
	}

	public void setDigest(boolean digest) {
		this.digest = digest;
	}

	public boolean isDirect() {
		return direct;
	}

	public void setDirect(boolean direct) {
		this.direct = direct;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy