| java.lang.Object org.dbbrowser.drivermanager.ConnectionInfo
ConnectionInfo | public class ConnectionInfo implements Serializable(Code) | | A connection info class represents the details of a JDBC connection to a database
author: amangat |
DES40C_ENCRYPTION_ALGORITHM | final public static String DES40C_ENCRYPTION_ALGORITHM(Code) | | |
DES56C_ENCRYPTION_ALGORITHM | final public static String DES56C_ENCRYPTION_ALGORITHM(Code) | | |
LIST_OF_CHECKSUM_ALGORITHMS | final public static String[] LIST_OF_CHECKSUM_ALGORITHMS(Code) | | |
LIST_OF_ENCRYPTION_ALGORITHMS | final public static String[] LIST_OF_ENCRYPTION_ALGORITHMS(Code) | | |
MD5_CHECK_SUM_ALGORITHM | final public static String MD5_CHECK_SUM_ALGORITHM(Code) | | |
RC4_40_ENCRYPTION_ALGORITHM | final public static String RC4_40_ENCRYPTION_ALGORITHM(Code) | | |
RC4_56_ENCRYPTION_ALGORITHM | final public static String RC4_56_ENCRYPTION_ALGORITHM(Code) | | |
ConnectionInfo | public ConnectionInfo(String driverClassName, File jdbcDriverJarFileLocation, String name, String dbmsType, String databaseURL, String username, String passwordString, String encryptionAlgorithm, String checkSumAlgorithm)(Code) | | Constrcuter
Parameters: driverClassName - Parameters: jdbcDriverJarFileLocation - Parameters: name - Parameters: dbmsType - Parameters: databaseURL - Parameters: username - Parameters: password - Parameters: encryptionAlgorithm - Parameters: checkSumAlgorithm - |
equals | public boolean equals(Object obj)(Code) | | Overrides the equals method of Object so it can be used as a key in a hashtable. Only
uses the connectionInfo.getName() to make the comparision. If 2 connection info objects have the same name,
they are equal. The name uniquely identifies the connection info object
|
getCheckSumAlgorithm | public String getCheckSumAlgorithm()(Code) | | Returns the checkSumAlgorithm, or null if no check sum is in use
|
getDBMSType | public String getDBMSType()(Code) | | Return the dbms type - e.g. Oracle, MySQL
|
getDatabaseURL | public String getDatabaseURL()(Code) | | Get the database URL
|
getDriverClassName | public String getDriverClassName()(Code) | | Get the driver class name, e.g. 'oracle.jdbc.OracleDriver'
|
getEncryptionAlgorithm | public String getEncryptionAlgorithm()(Code) | | Returns the encryption algorithm used, or null if there is no encryption required
|
getJdbcDriverJarFileLocation | public File getJdbcDriverJarFileLocation()(Code) | | Get the location fo the jar file, e.g. c:/drivers/ojdbc14.jar
|
getLastUsed | public Date getLastUsed()(Code) | | Return the time this connection was last used
|
getName | public String getName()(Code) | | Get the name specified for this connection - any unique name. E.g. 'Oracle connection to my database'
|
getPassword | public String getPassword()(Code) | | Get the password
|
getUsername | public String getUsername()(Code) | | get the username
|
hashCode | public int hashCode()(Code) | | Overrides the hashCode method of Object so it can be used as a key in a hashtable
|
setLastUsed | public void setLastUsed(Date updatedLastUsedDate)(Code) | | Update the last time this connection was used
Parameters: updatedLastUsedDate - |
|
|