01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.test.server.appserver;
05:
06: import com.tc.test.server.Server;
07:
08: /**
09: * 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: }
|