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

org.nlab.smtp.transport.strategy.TransportStrategy Maven / Gradle / Ivy

package org.nlab.smtp.transport.strategy;

import javax.mail.NoSuchProviderException;
import javax.mail.Session;
import javax.mail.Transport;

/**
 * Connection strategy that abstract {@link Session#getTransport}
 * 

*

* Created by nlabrot on 04/06/15. */ public interface TransportStrategy { Transport getTransport(Session session) throws NoSuchProviderException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy