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

com.jpattern.service.mail.SessionWrapperMailSender Maven / Gradle / Ivy

There is a newer version: 3.6.2
Show newest version
package com.jpattern.service.mail;

import javax.mail.Session;


/**
 * 
 * @author Francesco Cina
 *
 * 29/giu/2011
 */
public class SessionWrapperMailSender extends AMailSender { 

	private static final long serialVersionUID = 1L;

	private final Session session;

    public SessionWrapperMailSender(Session session) {
        this.session = session;
    }

	@Override
	protected Session getSession() {
		return session;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy