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
;
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);
24 protected IURLFetchServiceFactory
getFactoryInstance() {
25 return implementation
;