Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / files / FileServiceFactory.java
blobcd75875afcae4c0fa5b6e70bf3cf0f766f66fb8b
1 // Copyright 2011 Google Inc. All Rights Reserved.
3 package com.google.appengine.api.files;
5 /**
6 * A factory for producing instances of {@link FileService}.
8 */
9 public class FileServiceFactory {
10 /**
11 * Returns an instance of {@link FileService}.
13 public static FileService getFileService() {
14 return new FileServiceImpl();