Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / channel / ChannelServiceFactory.java
blob22d7255b8b674728241f893ed52555f06c4d2d54
1 // Copyright 2010 Google Inc. All rights reserved.
3 package com.google.appengine.api.channel;
5 import com.google.appengine.spi.ServiceFactoryFactory;
7 /**
8 * Constructs and instance of the Channel service.
11 public final class ChannelServiceFactory {
13 /**
14 * Creates an implementation of the ChannelService.
16 public static ChannelService getChannelService() {
17 return getFactory().getChannelService();
20 private static IChannelServiceFactory getFactory() {
21 return ServiceFactoryFactory.getFactory(IChannelServiceFactory.class);