KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > dsoserver > DsoServer


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.dsoserver;
5
6 import com.tc.test.server.Server;
7
8 import java.util.List JavaDoc;
9
10 /**
11  * DSO specific server interface.
12  */

13 public interface DsoServer extends Server {
14   // available for future feature enhancements
15

16   void addJvmArgs(List JavaDoc jvmArgs);
17   
18   boolean isRunning();
19 }
20
Popular Tags