| org.netbeans.modules.jdbcwizard.builder.dbmodel.DBConnectionDefinition
All known Subclasses: org.netbeans.modules.jdbcwizard.builder.dbmodel.impl.DBConnectionDefinitionImpl,
DBConnectionDefinition | public interface DBConnectionDefinition extends Cloneable(Code) | | Interface for defining specifications for a connection to a data source compatible with the
DBQueryModel API.
|
Method Summary | |
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 |
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 |
|
|