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<ServerBinding> |
EnvironmentModel.getServerBindingsInClusterForDomain(String clusterName, String domainId)
Returns the ServerBindings associated with the Domain and Cluster specified or an empty list if none are found
|
List<ServerBinding> |
EnvironmentModel.getServerBindingsOnHost(Host host)
Returns the ServerBindings associated with the Host specified or an empty list if none are found.
|
List<ServerBinding> |
EnvironmentModel.getServerBindingsOnHost(String hostId)
Returns the ServerBindings associated with the Host specified or an empty list if none are found Returns an empty list if none found.
|
List<ServerBinding> |
EnvironmentModel.getServerBindingsOnHostAndDomain(String hostId, String domainId)
Returns the ServerBindings associated with the Domain and Host specified or an empty list if none are found.
|
Modifier and Type | Method and Description |
---|---|
ServerBinding |
Domain.getServerBindingByName(String serverName)
Returns the ServerBinding matching the server name provided or null if no match is found.
|
ServerBinding |
Domain.getServerBindingForServerID(String serverID)
Returns the ServerBinding for the server Id specified or null if no match is found.
|
ServerBinding |
ServerBinding.setListenAddress(String listenAddress)
Sets the TCP/IP listen address.
|
ServerBinding |
ServerBinding.setListenPort(String listenPort)
Sets the TCP/IP listen port.
|
ServerBinding |
ServerBinding.setName(String name)
Sets the name of this ServerBinding.
|
ServerBinding |
ServerBinding.setParent(Domain containerDomain) |
ServerBinding |
ServerBinding.setServerRef(String serverRef)
Sets the server reference that this binding is for.
|
ServerBinding |
ServerBinding.setSslListenPort(String sslListenPort)
Sets the TCP/IP listen port for SSL traffic.
|
ServerBinding |
ServerBinding.setTuningParameters(TuningParameters tuningParameters)
Sets the TuningParameters for this ServerBinding or null if no TuningParameters.
|
Modifier and Type | Method and Description |
---|---|
List<ServerBinding> |
Domain.getServerBindings()
Returns the list of ServerBindings in this Domain or an empty list if none are found.
|
List<ServerBinding> |
Domain.getServerBindingsForServerIDs(List<String> serverIDs)
Returns the ServerBindings for the server ids specified or an empty list if none are found.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Domain.addServerBinding(ServerBinding serverBinding)
Adds the ServerBinding provided to the list of ServerBindings in this Domain.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Domain.addAllServerBindings(List<ServerBinding> serverBindings)
Adds the ServerBindings provided to the list of ServerBindings in this Domain.
|