1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234
/* ------------------------------------ JavaOnTracks Thibaut Colar tcolar-jot AT colar DOT net Artistic Licence 2.0 http://www.javaontracks.net ------------------------------------ */ package net.jot.db; import net.jot.logger.JOTLogger; import net.jot.persistance.JOTDBUpgrader; /** * Object representation of a JDBC database setup options * such as url, name ,password etc... *@author tcolar *@created May 6, 2003 */ public class JOTDBJDBCSetup { String url = ""; String name = ""; String password = ""; String driver = ""; int max = 10; String user = ""; boolean useUnicode = false; String encoding = null; Class upgrader=null; /** *Sets the user attribute of the DbSetup object * *@param user The new user value */ public void setUser(String user) { this.user = user; } /** *Sets the uRL attribute of the DbSetup object * *@param url The new uRL value */ public void setURL(String url) { this.url = url; } /** * Sets the unicode attribute of the DBSetup object * *@param b The new unicode value */ public void setUnicode(boolean b) { useUnicode = true; } /** * Sets the encoding attribute of the DBSetup object * *@param s The new encoding value */ public void setEncoding(String s) { encoding = s; } /** *Sets the dbName attribute of the DbSetup object * *@param name The new dbName value */ public void setDbName(String name) { this.name = name; } /** *Sets the Password attribute of the DbSetup object * *@param Password The new Password value */ public void setPassword(String password) { this.password = password; } /** *Sets the driver attribute of the DbSetup object * *@param driver The new driver value */ public void setDriver(String driver) { this.driver = driver; } /** *Sets the maxConnections attribute of the DbSetup object * *@param max The new maxConnections value */ public void setMaxConnections(int max) { this.max = max; } /** *Gets the user attribute of the DbSetup object * *@return The user value */ public String getUser() { return user; } /** *Gets the uRL attribute of the DbSetup object * *@return The uRL value */ public String getURL() { return url; } /** *Gets the dbName attribute of the DbSetup object * *@return The dbName value */ public String getDbName() { return name; } /** *Gets the Password attribute of the DbSetup object * *@return The Password value */ public String getPassword() { return password; } /** *Gets the driver attribute of the DbSetup object * *@return The driver value */ public String getDriver() { return driver; } /** *Gets the maxConnections attribute of the DbSetup object * *@return The maxConnections value */ public int getMaxConnections() { return max; } /** * Gets the useUnicode attribute of the DBSetup object * *@return The useUnicode value */ public boolean getUseUnicode() { return useUnicode; } public Class getUpgraderClass() { return upgrader; } public void setUpgraderClass(String updaterClass) { if(updaterClass==null) return; try { upgrader=Class.forName(updaterClass); if( ! (upgrader.newInstance() instanceof JOTDBUpgrader)) throw new Exception(updaterClass+" is not of type JOTDBUpgrader !!"); } catch(Exception e) { JOTLogger.log(JOTLogger.CAT_DB, JOTLogger.ERROR_LEVEL, "DBManager", "DB upgrader class not found: "+updaterClass); upgrader=null; } } /** * Gets the encoding attribute of the DBSetup object * *@return The encoding value */ public String getEncoding() { return encoding; } public String toString() { return "Driver:"+driver+" Url:"+url+" User:"+user+" Unicode:"+useUnicode+" Encoding:"+encoding+" MaxCons:"+max; } }