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

com.threewks.spring.gmail.MimeMessageInterceptor Maven / Gradle / Ivy

The newest version!
package com.threewks.spring.gmail;

import javax.mail.internet.MimeMessage;
import java.util.Objects;
import java.util.function.Function;

@FunctionalInterface
public interface MimeMessageInterceptor extends Function {


    default MimeMessageInterceptor andThen(MimeMessageInterceptor after) {
        Objects.requireNonNull(after);
        return message -> after.apply(apply(message));
    }

    static MimeMessageInterceptor unchanged() {
        return t -> t;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy