Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / urlfetch / URLFetchServiceFactory.java
blobfdb13eab1a34a8c13da7abcbd42b7e36ac2e369f
1 // Copyright 2007 Google Inc. All rights reserved.
3 package com.google.appengine.api.urlfetch;
5 import com.google.appengine.spi.ServiceFactoryFactory;
7 /**
8 * Factory for {@link URLFetchService}
11 public class URLFetchServiceFactory {
12 public static URLFetchService getURLFetchService() {
13 return getFactory().getURLFetchService();
16 private static IURLFetchServiceFactory getFactory() {
17 return ServiceFactoryFactory.getFactory(IURLFetchServiceFactory.class);