1.9.30 sync.
[gae.git] / java / src / main / com / google / appengine / api / urlfetch / IURLFetchServiceFactoryProvider.java
blob7fd54572c89edd6dda6ff8c0540ef553264cb2e4
1 // Copyright 2012 Google Inc. All rights reserved.
2 package com.google.appengine.api.urlfetch;
4 import com.google.appengine.spi.FactoryProvider;
5 import com.google.appengine.spi.ServiceProvider;
7 /**
8 * Factory provider for {@link IURLFetchServiceFactory}.
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 IURLFetchServiceFactoryProvider
15 extends FactoryProvider<IURLFetchServiceFactory> {
17 private final URLFetchServiceFactoryImpl implementation = new URLFetchServiceFactoryImpl();
19 public IURLFetchServiceFactoryProvider() {
20 super(IURLFetchServiceFactory.class);
23 @Override
24 protected IURLFetchServiceFactory getFactoryInstance() {
25 return implementation;