Package com.arcbees.appengine.mail

Source Code of com.arcbees.appengine.mail.MailModule

package com.arcbees.appengine.mail;

import com.google.inject.AbstractModule;
import com.google.inject.assistedinject.FactoryModuleBuilder;

public class MailModule extends AbstractModule {
    @Override
    protected void configure() {
        requestStaticInjection(Mail.class);
        install(new FactoryModuleBuilder().build(SendMailFactory.class));
    }
}
TOP

Related Classes of com.arcbees.appengine.mail.MailModule

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.