App Engine Java SDK version 1.9.8
[gae.git] / java / src / main / com / google / appengine / api / oauth / IOAuthServiceFactoryProvider.java
blobd827d1e6c350b20527d23486614f6549329bf321
1 // Copyright 2012 Google Inc. All rights reserved.
2 package com.google.appengine.api.oauth;
4 import com.google.appengine.spi.FactoryProvider;
5 import com.google.appengine.spi.ServiceProvider;
7 /**
8 * Factory provider for {@link IOAuthServiceFactory}.
10 * <p><b>Note:</b> This class is not intended for end users.
13 @ServiceProvider(value = FactoryProvider.class, precedence = Integer.MIN_VALUE)
14 public final class IOAuthServiceFactoryProvider extends FactoryProvider<IOAuthServiceFactory> {
16 private final OAuthServiceFactoryImpl implementation = new OAuthServiceFactoryImpl();
18 public IOAuthServiceFactoryProvider() {
19 super(IOAuthServiceFactory.class);
22 @Override
23 protected IOAuthServiceFactory getFactoryInstance() {
24 return implementation;