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.weblogic8x;
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 Weblogic8xAppServerInstallation extends
14: AbstractAppServerInstallation {
15:
16: public Weblogic8xAppServerInstallation(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 "weblogic";
23: }
24: }
|