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

com.commercetools.sunrise.email.MessageEditor Maven / Gradle / Ivy

The newest version!
package com.commercetools.sunrise.email;

import javax.annotation.Nonnull;
import javax.mail.MessagingException;
import javax.mail.internet.MimeMessage;

/**
 * A functional interface for modifying a message without needing to handle checked exceptions like the
 * {@link MessagingException}s thrown by {@link MimeMessage}.
 * 

* This interface will typically be implemented by lambda expressions passed to * {@link EmailSender#send(MessageEditor)}. See the JavaDoc of that method for an example. */ @FunctionalInterface public interface MessageEditor { /** * Implementations of this method modify the given message. See the JavaDoc of * {@link EmailSender#send(MessageEditor)} for an example of a lambda expression that implements this interface. * * @param message the message to modify * @throws Exception if modification fails */ void edit(@Nonnull final MimeMessage message) throws Exception; }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy