Package | Description |
---|---|
oracle.fmwplatform.envspec.environment |
This package contains classes that are used to represent various types of actual (existing) environments.
|
oracle.fmwplatform.envspec.environment.topology |
This package contains classes that are used to describe components of a Topology.
|
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 | Field and Description |
---|---|
protected OracleHome |
DomainEnvironment.topologyOracleHome |
protected OracleHome |
OracleHomeEnvironment.topologyOracleHome |
Modifier and Type | Method and Description |
---|---|
static OracleHome |
EnvironmentBootstrapMapping.buildBootstrapOracleHome(String id,
String oracleHomePath,
String javaHomePath,
Type oracleHomeType)
Create an OracleHome object and add the oracle home bootstrap parameters
|
Modifier and Type | Method and Description |
---|---|
static Topology |
EnvironmentBootstrapMapping.buildBootstrapTopology(String topologyName,
OracleHome oracleHome,
Domain domain)
Create a basic topology object with an Oracle home and a Domain object
|
protected MappedDomain |
EnvironmentHostMapping.findMappedDomain(Host host,
Domain topologyDomain,
OracleHome topologyOracleHome)
Find the right mappedDomain inside a host
|
static MappedOracleHome |
EnvironmentBootstrapMapping.mapOracleHomeToHost(Host host,
OracleHome oracleHome)
Adds an OracleHome to Host if it's not mapped already.
|
void |
EnvironmentHostMapping.updateHost(NodeManager nodeManager,
Topology topology,
Domain topologyDomain,
OracleHome topologyOracleHome,
Boolean refreshOnly)
Add a new host to the topology based on the nodemanager and add a nodemanager reference to the domain mapping
|
Modifier and Type | Method and Description |
---|---|
OracleHome |
EnvironmentModel.getOracleHomeById(String oracleHomeId)
Returns the OracleHome for the oracleHomeId specified or null if it is not found.
|
OracleHome |
EnvironmentModel.getOracleHomeForAdminServerOfDomain(String domainId)
Returns the OracleHome mapped to the AdminServer of the Domain specified or null if no match is found.
|
OracleHome |
EnvironmentModel.getOracleHomeForNodeManager(String nodeManagerId)
Return the OracleHome that was targeted in the model
|
OracleHome |
EnvironmentModel.getOracleHomeForServerInDomain(String serverId,
Domain domain)
Returns the OracleHome mapped to the Server of the Domain specified or null if no match is found.
|
OracleHome |
EnvironmentModel.getOracleHomeForServerInDomain(String serverId,
String domainId)
Returns the OracleHome mapped to the Server of the Domain specified or null if no match is found.
|
Modifier and Type | Method and Description |
---|---|
List<OracleHome> |
EnvironmentModel.getOracleHomes()
Returns the OracleHomes associated with the Topology in this EnvironmentModel or an empty list if none are found
|
Modifier and Type | Method and Description |
---|---|
List<Domain> |
EnvironmentModel.getDomainsUsingOracleHome(OracleHome oracleHome)
Returns the Domains using the OracleHome specified or an empty list if no matches are found.
|
List<String> |
EnvironmentModel.getHostIdsHostingOracleHome(OracleHome oracleHome)
Returns the Host ids associated with the OracleHome specified or an empty list if none are found.
|
List<Host> |
EnvironmentModel.getHostsHostingOracleHome(OracleHome oracleHome)
Returns the Hosts associated with the OracleHome specified or an empty list if none are found.
|
Modifier and Type | Method and Description |
---|---|
OracleHome |
MappedOracleHome.getOracleHome()
Returns the OracleHome that this MappedOracleHome is based on.
|
OracleHome |
InstallationData.getParent() |
OracleHome |
OracleHome.setId(String id) |
OracleHome |
OracleHome.setInstallationData(InstallationData installationData)
Set the installation data information about the installations in the OracleHome.
|
OracleHome |
OracleHome.setInventoryLocation(String inventoryLocation)
Sets the inventory location for the OracleHome.
|
OracleHome |
OracleHome.setJavaHome(String javaHome)
Sets the filesystem path to the Java Home (JDK install directory).
|
OracleHome |
OracleHome.setParent(Topology containerTopology) |
OracleHome |
OracleHome.setPath(String path)
Set the path to the OracleHome.
|
OracleHome |
OracleHome.setType(Type type)
Sets the type of this OracleHome (shared or local).
|
Modifier and Type | Method and Description |
---|---|
List<OracleHome> |
Topology.getOracleHomes()
Return the list of OracleHomes (binary directories) in this Topology.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Topology.addOracleHome(OracleHome oracleHome)
Adds the OracleHome provided to the list of OracleHomes in this Topology.
|
MappedOracleHome |
Host.addOracleHome(OracleHome oracleHome)
Convenience method to add an OracleHome to the MappedOracleHomes for this Host.
|
MappedOracleHome |
MappedOracleHome.setOracleHome(OracleHome oracleHome)
Sets the OracleHome that this MappedOracleHome is based on or null.
|
InstallationData |
InstallationData.setParent(OracleHome containerOracleHome) |
Modifier and Type | Method and Description |
---|---|
Topology |
Topology.setOracleHomes(List<OracleHome> oracleHomes)
Identify the Oracle Homes (binary directories) in this Topology.
|
Constructor and Description |
---|
MappedOracleHome(OracleHome oracleHome)
Creates a MappedOracleHome that is based on the OracleHome specified.
|