| org.netbeans.modules.sql.framework.model.DBConnectionDefinition
DBConnectionDefinition | public interface DBConnectionDefinition extends Cloneable(Code) | | Interface for defining specifications for a connection to a data source compatible
with the DatabaseModel API.
author: Jonathan Giron, Sudhendra Seshachala |
Method Summary | |
Properties | getConnectionProperties() | public String | getConnectionURL() Gets URL used to reference and establish a connection to the data
source referenced in this object. | public String | getDBType() Gets descriptive name, if any, of type of DB data source from which this
metadata content was derived, e.g., "Oracle9" for an Oracle 9i database, etc. | public String | getDescription() Gets user-defined description, if any, for this DBConnectionDefinition. | public String | getDriverClass() | public String | getName() Get name defined for this DBConnectionDefinition. | public String | getPassword() Gets password, if any, used in authenticating a connection to the
data source referenced in this object. | public String | getUserName() Gets username, if any, used in authenticating a connection to the
data source referenced in this object. |
getConnectionURL | public String getConnectionURL()(Code) | | Gets URL used to reference and establish a connection to the data
source referenced in this object.
URL pointing to the data source |
getDBType | public String getDBType()(Code) | | Gets descriptive name, if any, of type of DB data source from which this
metadata content was derived, e.g., "Oracle9" for an Oracle 9i database, etc.
Returns null if content was derived from a non-DB source, such
such as a flatfile.
vendor name of source database; null if derived from non-DB source |
getDescription | public String getDescription()(Code) | | Gets user-defined description, if any, for this DBConnectionDefinition.
user-defined description, or null if none was defined |
getDriverClass | public String getDriverClass()(Code) | | Gets fully-qualified class name of driver used to establish a connection
to the data source referenced in this object
fully-qualified driver class name |
getName | public String getName()(Code) | | Get name defined for this DBConnectionDefinition.
DBConnectionDefnition name |
getPassword | public String getPassword()(Code) | | Gets password, if any, used in authenticating a connection to the
data source referenced in this object.
password, if any, used for authentication purposes |
getUserName | public String getUserName()(Code) | | Gets username, if any, used in authenticating a connection to the
data source referenced in this object.
username, if any, used for authentication purposes |
|
|