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.jboss4x;
05:
06: import com.tc.test.server.appserver.AbstractAppServerInstallation;
07:
08: import java.io.File;
09:
10: /**
11: * Defines the appserver name used by the installation process.
12: */
13: public final class JBoss4xAppServerInstallation extends
14: AbstractAppServerInstallation {
15:
16: public JBoss4xAppServerInstallation(File home, File workingDir,
17: String majorVersion, String minorVersion) throws Exception {
18: super (home, workingDir, majorVersion, minorVersion);
19: }
20:
21: public String serverType() {
22: return "jboss";
23: }
24: }
|