1 // Copyright 2012 Google Inc. All rights reserved.
2 package com
.google
.appengine
.api
.capabilities
;
4 import com
.google
.appengine
.spi
.FactoryProvider
;
5 import com
.google
.appengine
.spi
.ServiceProvider
;
8 * Factory provider for {@link ICapabilitiesServiceFactory}.
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 ICapabilitiesServiceFactoryProvider
15 extends FactoryProvider
<ICapabilitiesServiceFactory
> {
17 private final CapabilitiesServiceFactoryImpl implementation
18 = new CapabilitiesServiceFactoryImpl();
20 public ICapabilitiesServiceFactoryProvider() {
21 super(ICapabilitiesServiceFactory
.class);
25 protected ICapabilitiesServiceFactory
getFactoryInstance() {
26 return implementation
;