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

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

The newest version!
package org.nlab.smtp.transport.strategy;

import jakarta.mail.MessagingException;
import jakarta.mail.Transport;

/**
 * Connection strategy that abstract {@link Transport#connect}
 * 

* Created by nlabrot on 04/06/15. */ public interface ConnectionStrategy { void connect(Transport transport) throws MessagingException; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy