Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / quota / QuotaServiceFactoryImpl.java
blob360ce563a861030548928943569c1f09fffe4ee9
1 // Copyright 2012 Google Inc. All rights reserved.
3 package com.google.appengine.api.quota;
5 /**
6 * The factory by which users acquire a handle to the QuotaService.
8 */
9 final class QuotaServiceFactoryImpl implements IQuotaServiceFactory {
11 private static final QuotaServiceImpl INSTANCE = new QuotaServiceImpl();
13 @Override
14 public QuotaService getQuotaService() {
15 return INSTANCE;