Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / appidentity / AppIdentityServiceFactory.java
blob1e8b31f72904caef407a81e5b6733d1baeab4d85
1 // Copyright 2011 Google Inc. All rights reserved.
2 package com.google.appengine.api.appidentity;
4 import com.google.appengine.spi.ServiceFactoryFactory;
6 /**
7 * Creates new instances of the App identity service.
9 */
10 public final class AppIdentityServiceFactory {
11 private AppIdentityServiceFactory() {}
13 public static AppIdentityService getAppIdentityService() {
14 return getFactory().getAppIdentityService();
17 private static IAppIdentityServiceFactory getFactory() {
18 return ServiceFactoryFactory.getFactory(IAppIdentityServiceFactory.class);