KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > test > server > appserver > wasce1x > Wasce1xAppServerParameters


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.wasce1x;
5
6 import com.tc.test.server.appserver.StandardAppServerParameters;
7
8 import java.util.Properties JavaDoc;
9
10 /**
11  * DSO specific arguments for Wasce1x appservers.
12  */

13 public final class Wasce1xAppServerParameters extends StandardAppServerParameters {
14
15   public Wasce1xAppServerParameters(String JavaDoc instanceName, Properties JavaDoc props, String JavaDoc tcSessionClasspath) {
16     super(instanceName, props, tcSessionClasspath);
17   }
18
19 }
20
Popular Tags