
com.threewks.spring.gmail.MimeMessageInterceptor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spring-gae-gmail Show documentation
Show all versions of spring-gae-gmail Show documentation
Spring Boot, Google App Engine and Gmail integration
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