Revision created by MOE tool push_codebase.
[gae.git] / java / src / main / com / google / appengine / tools / development / BackendServers.java
blob00625d022e76ccc99b49fa22db34554b590401e5
1 // Copyright 2011 Google Inc. All Rights Reserved.
3 package com.google.appengine.tools.development;
5 import com.google.common.annotations.VisibleForTesting;
7 /**
8 * Controls backend servers configured in appengine-web.xml. Each server is
9 * started on a separate port. All servers run the same code as the main app.
13 public class BackendServers extends AbstractBackendServers {
15 private static BackendServers instance = new BackendServers();
17 public static BackendServers getInstance() {
18 return instance;
21 @VisibleForTesting
22 BackendServers() {