Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / api / channel / IChannelServiceFactoryProvider.java
blob4ffa358736a16f96fe296e24f1722a5fb64fd2a8
1 // Copyright 2012 Google Inc. All rights reserved.
2 package com.google.appengine.api.channel;
4 import com.google.appengine.spi.FactoryProvider;
5 import com.google.appengine.spi.ServiceProvider;
7 /**
8 * Factory provider for {@link IChannelServiceFactory}.
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 IChannelServiceFactoryProvider extends FactoryProvider<IChannelServiceFactory> {
16 private final ChannelServiceFactoryImpl implementation = new ChannelServiceFactoryImpl();
18 public IChannelServiceFactoryProvider() {
19 super(IChannelServiceFactory.class);
22 @Override
23 protected IChannelServiceFactory getFactoryInstance() {
24 return implementation;