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.deployment;
05:
06: public abstract class AbstractDBServer extends AbstractStoppable
07: implements Stoppable {
08: private int serverPort = 0;
09: private String dbName = null;
10:
11: public int getServerPort() {
12: return serverPort;
13: }
14:
15: public void setServerPort(int serverPort) {
16: this .serverPort = serverPort;
17: }
18:
19: public String getDbName() {
20: return dbName;
21: }
22:
23: public void setDbName(String dbName) {
24: this.dbName = dbName;
25: }
26: }
|