Package | Description |
---|---|
oracle.fmwplatform.envspec.model |
This package contains classes that are used to represent models of real (existing) or imagined (to be created) environments.
|
oracle.fmwplatform.envspec.model.topology |
Classes used to describe a Topology.
|
Modifier and Type | Method and Description |
---|---|
Database |
EnvironmentModel.getDatabaseById(String databaseId)
Returns the Database for the databaseId specified or null if it is not found.
|
Modifier and Type | Method and Description |
---|---|
List<Database> |
EnvironmentModel.getDatabases()
Returns the Databases ids associated with the Topology in this EnvironmentModel or an empty list if none are found
|
Modifier and Type | Method and Description |
---|---|
Database |
Schema.getDatabase()
Returns the Database associated to this Schema.
|
Database |
Topology.getDatabase(String databaseID)
Get a Database by id in this Topology.
|
Database |
ONSConnectInfo.getParent() |
Database |
JDBCConnectInfo.getParent() |
Database |
Database.setDbaCredentialRef(String dbaCredentialRef)
Sets the DBA Credential reference which may be null.
|
Database |
Database.setDbaRole(Database.Role dbaRole)
Sets the DBA role.
|
Database |
Database.setId(String id)
Set the ID.
|
Database |
Database.setParent(Topology containerTopology)
Set the parent topology.
|
Database |
Database.setRcuConnectString(String rcuConnectString)
Sets the RCU connect string.
|
Database |
Database.setVendor(Database.Vendor vendor)
Sets the vendor of this Database.
|
Modifier and Type | Method and Description |
---|---|
List<Database> |
Topology.getDatabases()
Returns the list of Databases in this Topology or an empty list if none are present.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Topology.addDatabase(Database database)
Adds the Database provided to the list of Databases in this Topology.
|
Schema |
Schema.setDatabase(Database database)
Sets the Database that is to be associated with this Schema
|
ONSConnectInfo |
ONSConnectInfo.setParent(Database database) |
JDBCConnectInfo |
JDBCConnectInfo.setParent(Database database) |
Modifier and Type | Method and Description |
---|---|
Topology |
Topology.setDatabases(List<Database> databases)
Sets the list of Databases in this Topology.
|