Version 1.7.4
[gae.git] / java / src / main / com / google / appengine / api / labs / servers / ServersServiceFactory.java
blob9d8a90a8a330d494882a261a7a15b98699388077
1 package com.google.appengine.api.labs.servers;
3 /**
4 * Factory for getting an implementation of the {@link ServersService}.
6 * @see ServersService
7 */
8 public class ServersServiceFactory {
10 /**
11 * Returns an implementation of {@link ServersService} for the current environment.
13 public static ServersService getServersService() {
14 return new ServersServiceImpl();
17 private ServersServiceFactory() { }