Package | Description |
---|---|
oracle.jdeveloper.db |
Classes for accessing database connections in JDeveloper (and other FCP
products).
|
oracle.jdeveloper.db.controls |
UI controls that are useful when listing, selecting or displaying database
connections.
|
oracle.jdeveloper.db.panels |
UI panels that are useful when listing, selecting or displaying database
connections in dialogs and wizards.
|
Modifier and Type | Method and Description |
---|---|
static DatabaseConnections |
AppDatabaseConnections.getAppDatabaseConnections()
Creates a DatabaseConnections wrapper for the Application Connections in
the Application (Workspace) found in the current IDE Context, which is
retrieved using
Context.newIdeContext() . |
static DatabaseConnections |
AppDatabaseConnections.getAppDatabaseConnections(Context ideContext)
Creates a DatabaseConnections wrapper for the Application Connections in
the Application (Workspace) found in the given IDE Context.
|
static DatabaseConnections |
AppDatabaseConnections.getAppDatabaseConnections(Workspace ws)
Creates a DatabaseConnections wrapper for the Application Connections in
the Application (Workspace).
|
static DatabaseConnections |
AppDatabaseConnections.getCurrentDatabaseConnections(Context ideContext)
Deprecated.
|
DatabaseConnections |
DatabaseConnectionStores.getCurrentStore()
Gets the current store.
|
DatabaseConnections |
DatabaseConnectionStores.getCurrentStore(Context ideContext)
Gets the current store.
|
static DatabaseConnections |
DatabaseConnections.getInstance()
Returns the central instance of database connections for the current
session.
|
static DatabaseConnections |
DatabaseConnections.getLegacyPrivateInstance(java.net.URL url)
Creates a private DatabaseConnections instance that exclusively uses
legacy encryption.
|
static DatabaseConnections |
DatabaseConnections.getPrivateInstance(java.net.URL url)
Deprecated.
use
getPrivateInstance(URL,String) to provide
the passphrase for encryption/decryption of credentials. |
static DatabaseConnections |
DatabaseConnections.getPrivateInstance(java.net.URL url,
java.lang.String key)
Returns a private instance of database connections for the given URL.
|
abstract DatabaseConnections |
StoreProvider.getStore(java.lang.String storeName)
Gets the DatabaseConnectinos instance for the given store name, if the
given store name is from this StoreProvider.
|
DatabaseConnections |
DatabaseConnectionStores.getStore(java.lang.String storeName)
Retrieves a store with the given unique name.
|
Modifier and Type | Method and Description |
---|---|
abstract ConnectionInfo |
DatabaseConnectionEditorLauncher.launchEditor(DatabaseConnections conns,
java.lang.String connName)
Launches the connection editor.
|
protected void |
StoreProvider.storeRemoved(java.lang.String storeName,
DatabaseConnections store) |
Modifier and Type | Method and Description |
---|---|
protected DatabaseConnections |
ConnectionPickerButton.getDefaultStore()
By default returns null unless there is only one store in the product, then
that is the deafult.
|
Modifier and Type | Method and Description |
---|---|
protected java.util.Collection<java.lang.String> |
ConnectionPickerButton.listConnections(DatabaseConnections dc)
By default returns all the connections in the connection store.
|
Modifier and Type | Method and Description |
---|---|
protected DatabaseConnections |
AppConnectionPanelUI.getConnections() |
protected DatabaseConnections |
ConnectionPanelUI.getConnections()
Used by the default implementation of
ConnectionPanelUI.listConnections() to
return the DatabaseConnections instance that contains the connections
to choose from. |