KickJava   Java API By Example, From Geeks To Geeks.

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


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.ServerParameters;
7
8 import java.io.File JavaDoc;
9
10 /**
11  * Server parameters specific to DSO. These methods are read by the DsoServer implementation.
12  */

13 public interface DsoServerParameters extends ServerParameters {
14
15   File JavaDoc configFile();
16
17   int dsoPort();
18
19   int jmxPort();
20
21   File JavaDoc workingDir();
22
23   File JavaDoc outputFile();
24 }
25
Popular Tags