Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / mail / IMailServiceFactory.java
blob4a472b0cb972cd576275eeaea9ccc738265a4a70
1 // Copyright 2012 Google Inc. All rights reserved.
3 package com.google.appengine.api.mail;
5 /**
6 * Factory for creating a {@link MailService}.
7 */
8 public interface IMailServiceFactory {
10 /**
11 * Returns an implementation of the {@link MailService}.
12 * @return a mail service implementation.
14 MailService getMailService();