KickJava   Java API By Example, From Geeks To Geeks.

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


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.AbstractAppServerInstallation;
7
8 import java.io.File JavaDoc;
9 import java.net.URL JavaDoc;
10
11 /**
12  * Defines the appserver name used by the installation process.
13  */

14 public final class Wasce1xAppServerInstallation extends AbstractAppServerInstallation {
15
16   public Wasce1xAppServerInstallation(URL JavaDoc host, File JavaDoc serverDir, File JavaDoc workingDir, String JavaDoc majorVersion,
17                                       String JavaDoc minorVersion) throws Exception JavaDoc {
18     super(host, serverDir, workingDir, majorVersion, minorVersion);
19   }
20
21   public Wasce1xAppServerInstallation(File JavaDoc home, File JavaDoc workingDir, String JavaDoc majorVersion, String JavaDoc minorVersion)
22       throws Exception JavaDoc {
23     super(home, workingDir, majorVersion, minorVersion);
24   }
25
26   public String JavaDoc serverType() {
27     return "wasce";
28   }
29 }
30
Popular Tags