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 |
DataSourceBinding.getDatabase()
Returns the Database from the Schema attached to this DataSourceBinding.
|
Database |
Node.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.setDriverClass(String driverClass)
Sets the fully qualified Java class name of the non-XA JDBC driver.
|
Database |
Database.setId(String id) |
Database |
Database.setNodes(List<Node> nodes)
Sets the Nodes in this Database.
|
Database |
Database.setParent(Topology containerTopology) |
Database |
Database.setRcuConnectString(String rcuConnectString)
Sets the RCU connect string.
|
Database |
Database.setVendor(Database.Vendor vendor)
Sets the vendor of this Database.
|
Database |
Database.setXaDriverClass(String xaDriverClass)
Sets the fully qualified Java class name of the XA JDBC driver.
|
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
|
Node |
Node.setParent(Database containerDatabase) |
Modifier and Type | Method and Description |
---|---|
Topology |
Topology.setDatabases(List<Database> databases)
Sets the list of Databases in this Topology.
|