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 |
---|---|
SystemComponent |
EnvironmentModel.getSystemComponentById(String systemComponentId)
Returns the SystemComponent for the systemComponentId specified or null
if it is not found.
|
Modifier and Type | Method and Description |
---|---|
List<SystemComponent> |
EnvironmentModel.getSystemComponents()
Returns the SystemComponents associated with the Topology in this
EnvironmentModel or an empty list if none are found.
|
List<SystemComponent> |
EnvironmentModel.getSystemComponentsByName(String systemComponentName)
Returns the list of SystemComponents having same name attribute to as
that of the input.
|
List<SystemComponent> |
EnvironmentModel.getSystemComponentsForDomain(String domainId)
Returns the SystemComponents associated with the Domain specified or null
if it is not found.
|
List<SystemComponent> |
EnvironmentModel.getSystemComponentsForDomainAndNodeManager(String domainId,
String nodeManagerName)
Returns the SystemComponent associated with the Domain and NodeManager
specified or null if it is not found.
|
Modifier and Type | Method and Description |
---|---|
SystemComponent |
MappedSystemComponent.getSystemComponent()
Returns the SystemComponent referenced by this mapping.
|
SystemComponent |
Topology.getSystemComponentByName(String name)
Return the
SystemComponent that matches the given name. |
SystemComponent |
SystemComponent.setComponentType(String componentType)
Set the componentType attribute.Examples of types may include "OHS", "Coherence"
|
SystemComponent |
SystemComponent.setId(String id)
Set the ID.
|
SystemComponent |
SystemComponent.setMachine(NodeManager machine)
Set the
NodeManager associated with this SystemComponent. |
SystemComponent |
SystemComponent.setName(String name)
Sets the name of the SystemComponent.
|
SystemComponent |
SystemComponent.setParent(Topology containerTopology) |
SystemComponent |
SystemComponent.setTuningParameters(TuningParameters tuningParameters)
Sets the TuningParameters for this SystemComponent or null if no TuningParameters.
|
Modifier and Type | Method and Description |
---|---|
List<SystemComponent> |
Topology.getSystemComponents()
Returns the list of
SystemComponent in this Topology. |
Modifier and Type | Method and Description |
---|---|
boolean |
MappedDomain.addSystemComponent(SystemComponent systemComponent)
Maps the input SystemComponent to the domain.
|
boolean |
Topology.addSystemComponent(SystemComponent systemComponent)
Adds the SystemComponent provided to the list of SystemComponent in this
Topology.
|
boolean |
Topology.removeSystemComponent(SystemComponent systemComponent)
Removes the first occurrence of the specified SystemComponent from this
Topology and as well as any mappings present in
MappedDomain . |
MappedSystemComponent |
MappedSystemComponent.setSystemComponent(SystemComponent systemComponent)
Sets the reference to a SystemComponent in this mapping.
|
Modifier and Type | Method and Description |
---|---|
boolean |
MappedDomain.addAllSystemComponents(List<SystemComponent> systemComponents)
Maps the input list of SystemComponents to the domain.
|
boolean |
Topology.addAllSystemComponents(List<SystemComponent> systemComponents)
Adds the list of SystemComponent provided to the list of SystemComponents
in this Topology.
|
Topology |
Topology.setSystemComponents(List<SystemComponent> systemComponents)
Set the list of specified SystemComponet instances in the topology
|
Constructor and Description |
---|
MappedSystemComponent(SystemComponent systemComponent)
Creates an instance of MappedSystemComponent based on the SystemComponent specified.
|