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 |
---|---|
List<DataSourceBinding> |
EnvironmentModel.getDataSourceBindingsInDomain(Domain domain)
Returns the DataSourceBindings associated with the Domain specified or an empty list if no match is found
|
List<DataSourceBinding> |
EnvironmentModel.getDataSourceBindingsInDomain(String domainId)
Returns the DataSourceBindings associated with the Domain specified or an empty list if no match is found.
|
Modifier and Type | Class and Description |
---|---|
class |
GenericDataSourceBinding
Binding information for a data source.
|
class |
MultiDataSourceBinding
Used to define a MultiDataSource data source.
|
Modifier and Type | Method and Description |
---|---|
DataSourceBinding |
Schema.getDataSourceBindingByName(String dataSourceName)
Returns the DataSourceBinding that matches the provided DataSource name.
|
DataSourceBinding |
DataSourceBinding.setDataSourceName(String dataSourceName)
Sets the name of this DataSourceBinding.
|
DataSourceBinding |
DataSourceBinding.setParent(Schema containerSchema) |
DataSourceBinding |
DataSourceBinding.setTuningParameters(TuningParameters tuningParameters)
Sets the TuningParameters for this DataSourceBinding or null if no TuningParameters.
|
DataSourceBinding |
DataSourceBinding.setXA(boolean xa)
Sets if an XA driver must be used.
|
Modifier and Type | Method and Description |
---|---|
List<DataSourceBinding> |
Schema.getDataSourceBindings()
Returns the list of DataSourceBindings or an empty list if there are none.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Schema.addDataSourceBinding(DataSourceBinding dataSourceBinding)
Adds a DataSourceBinding to the list of DataSourceBindings in this Schema.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Schema.addAllDataSourceBindings(List<DataSourceBinding> dataSourceBindings)
Adds the specified DataSourceBindings to the list of DataSourceBindings in this Schema.
|
Schema |
Schema.setDataSourceBindings(List<DataSourceBinding> dataSourceBindings)
Sets the DataSourceBindings that are associated with this Schema.
|