001: /*
002: * Created on May 23, 2004
003: *
004: * To change the template for this generated file go to
005: * Window>Preferences>Java>Code Generation>Code and Comments
006: */
007: package com.pk;
008:
009: /**
010: * @author Isabelle
011: *
012: * To change the template for this generated type comment go to
013: * Window>Preferences>Java>Code Generation>Code and Comments
014: */
015: public class ConnectionInformation {
016: private String propertiesKey = null;
017: private String url = null;
018: private String userID = null;
019: private String password = null;
020: private int numberOfWindows = 0;
021: private String connectionListKey = null;
022: private DatabaseDialect databaseDialect = null;
023: private String connectionName = null;
024:
025: /**
026: * @return
027: */
028: public String getPassword() {
029: return password;
030: }
031:
032: /**
033: * @return
034: */
035: public String getPropertiesKey() {
036: return propertiesKey;
037: }
038:
039: /**
040: * @return
041: */
042: public String getUrl() {
043: return url;
044: }
045:
046: /**
047: * @return
048: */
049: public String getUserID() {
050: return userID;
051: }
052:
053: /**
054: * @param string
055: */
056: public void setPassword(String string) {
057: password = string;
058: }
059:
060: /**
061: * @param string
062: */
063: public void setPropertiesKey(String string) {
064: propertiesKey = string;
065: }
066:
067: /**
068: * @param string
069: */
070: public void setUrl(String string) {
071: url = string;
072: }
073:
074: /**
075: * @param string
076: */
077: public void setUserID(String string) {
078: userID = string;
079: }
080:
081: /**
082: * @return
083: */
084: public String getConnectionListKey() {
085: return connectionListKey;
086: }
087:
088: /**
089: * @return
090: */
091: public int getNumberOfWindows() {
092: return numberOfWindows;
093: }
094:
095: /**
096: * @param string
097: */
098: public void setConnectionListKey(String string) {
099: connectionListKey = string;
100: }
101:
102: /**
103: * @param i
104: */
105: public void setNumberOfWindows(int i) {
106: numberOfWindows = i;
107: }
108:
109: /**
110: * @return
111: */
112: public DatabaseDialect getDatabaseDialect() {
113: return databaseDialect;
114: }
115:
116: /**
117: * @param dialect
118: */
119: public void setDatabaseDialect(DatabaseDialect dialect) {
120: databaseDialect = dialect;
121: }
122:
123: /**
124: * @return Returns the connectionName.
125: */
126: public String getConnectionName() {
127: return connectionName;
128: }
129:
130: /**
131: * @param connectionName The connectionName to set.
132: */
133: public void setConnectionName(String connectionName) {
134: this.connectionName = connectionName;
135: }
136: }
|