jet.universe
Class ConnectionDesc

java.lang.Object
  extended by jet.universe.ConnectionDesc

public class ConnectionDesc
extends java.lang.Object

A class that encapsulates the description of the connection in the catalog.


Field Summary
 java.lang.String strDriver
          The class path of JDBC driver used in this connection.
 java.lang.String strName
          The meaningful name of the data source.
 java.lang.String strPassword
          The password of the user.
 java.lang.String strURL
          The URL used to connect to a database.
 java.lang.String strUser
          The user name used to login.
 
Constructor Summary
ConnectionDesc()
          Constructs a connection description.
 
Method Summary
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

strName

public java.lang.String strName
The meaningful name of the data source.


strURL

public java.lang.String strURL
The URL used to connect to a database.


strUser

public java.lang.String strUser
The user name used to login.


strPassword

public java.lang.String strPassword
The password of the user. Note: when the description is got from the catalog, the password is left null.


strDriver

public java.lang.String strDriver
The class path of JDBC driver used in this connection.

Constructor Detail

ConnectionDesc

public ConnectionDesc()
Constructs a connection description.