App Engine Python SDK version 1.7.4 (2)
[gae.git] / java / src / main / com / google / appengine / api / oauth / OAuthServiceFactory.java
blobe8bda89513fc9f4fc37ae6f19f990a7f20be85e3
1 // Copyright 2010 Google Inc. All rights reserved.
3 package com.google.appengine.api.oauth;
5 /**
6 * Creates an OAuthService.
8 */
9 public final class OAuthServiceFactory {
10 /**
11 * Creates an implementation of the OAuthService.
13 public static OAuthService getOAuthService() {
14 return new OAuthServiceImpl();
17 private OAuthServiceFactory() {