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

com.github.sleroy.junit.mail.server.events.RejectedMailEvent Maven / Gradle / Ivy

There is a newer version: 0.1.1
Show newest version
/*
 *
 */
package com.github.sleroy.junit.mail.server.events;

import com.github.sleroy.fakesmtp.model.EmailModel;

/**
 * The Class {@link RejectedMailEvent} defines an event when an email model has
 * been rejected.
 */
public class RejectedMailEvent {

    private final EmailModel model;

    /**
     * Instantiates a new rejected mail event.
     *
     * @param model
     *            the model
     */
    public RejectedMailEvent(final EmailModel model) {
	this.model = model;

    }

    public EmailModel getModel() {
	return model;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy