KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > AppServer


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.test.server.appserver;
5
6 import com.tc.test.server.Server;
7
8 /**
9  * Knows how to start and stop an application server. Application Servers must be started in serial to avoid race
10  * conditions in allocating ports.
11  */

12 public interface AppServer extends Server {
13   // available for future feature enhancements
14
}
15
Popular Tags