Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / backends / IBackendServiceFactory.java
blobc7b746e8bb8c07d25b31cd8bd5c786e18f6d9e41
1 // Copyright 2012 Google Inc. All rights reserved.
3 package com.google.appengine.api.backends;
5 /**
6 * Factory for getting the Backends API implementation for the current
7 * environment.
9 */
10 public interface IBackendServiceFactory {
12 /**
13 * Gets a handle to the backends API for the current running environment.
15 * @return An implementation of the backends API.
17 BackendService getBackendService();