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 |
---|---|
WebTier |
EnvironmentModel.getWebTierById(String webTierId)
Returns the WebTier for the webTierId specified or null if it is not found.
|
Modifier and Type | Method and Description |
---|---|
List<WebTier> |
EnvironmentModel.getWebTiers()
Returns the WebTiers associated with the Topology in this EnvironmentModel or an empty list if none are found.
|
List<WebTier> |
EnvironmentModel.getWebTiersForDomain(String domainId)
Returns the list of WebTier objects for the specified domain
|
Modifier and Type | Method and Description |
---|---|
WebTier |
VirtualHost.getParent() |
WebTier |
MappedWebTier.getWebTier()
Returns the WebTier object belonging to this MappedWebTier object
|
WebTier |
WebTierBinding.getWebTierRef()
Returns the WebTier object this WebTierBinding refers to
|
WebTier |
WebTier.setAddress(String address)
Set the address of this WebTier object
|
WebTier |
WebTier.setAdminCredentialRef(String adminCredentialRef)
Set the admin credential reference for this WebTier object
|
WebTier |
WebTier.setId(String id)
Sets the id that is used when referencing this WebTier.
|
WebTier |
WebTier.setName(String name)
Sets the name of this WebTier object
|
WebTier |
WebTier.setParent(Topology containerTopology) |
WebTier |
WebTier.setType(WebTier.Type type)
Set the type of the WebTier.
|
WebTier |
WebTier.setVirtualHosts(List<VirtualHost> virtualHosts)
Set a list of VirtualHosts
|
Modifier and Type | Method and Description |
---|---|
List<WebTier> |
Topology.getWebTiers()
Returns the list of WebTier objects in this Topology or an empty list if none are present
|
Modifier and Type | Method and Description |
---|---|
boolean |
Topology.addWebTier(WebTier webTier)
Adds a WebTier object to the list of WebTiers in this Topology
|
VirtualHost |
VirtualHost.setParent(WebTier containerWebTier) |
MappedWebTier |
MappedWebTier.setWebTier(WebTier webTier)
Sets the WebTier object that belongs to this MappedWebTier object.
|
WebTierBinding |
WebTierBinding.setWebTierRef(WebTier webTierRef)
Set the WebTier object this WebTierBinding refers to
|
Modifier and Type | Method and Description |
---|---|
boolean |
Topology.addAllWebTiers(List<WebTier> webTiers)
Adds a list of WebTier objects to the list of WebTiers in this Topology
|
Topology |
Topology.setWebTiers(List<WebTier> webTiers)
Sets the webTiers with the provided list
|