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 |
MappedServer.getServerBinding()
Returns the server binding mapped to this host.
|
ServerBinding |
Domain.getServerBindingByID(String serverBindingID)
Returns the ServerBinding for the server binding id specified or null if no match is found.
|
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.setId(String id)
Sets id to be used when referencing this ServerBinding.
|
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> |
ClusterBinding.getMembers()
Returns the list of servers for this cluster.
|
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 |
MappedDomain.addMappedServer(ServerBinding serverBinding)
adds a mapped server to this mapped domain for the specified server binding
|
boolean |
Domain.addServerBinding(ServerBinding serverBinding)
Adds the ServerBinding provided to the list of ServerBindings in this Domain.
|
boolean |
Domain.removeServerBinding(ServerBinding serverBinding)
Removes the ServerBinding from the list of ServerBindings in this Domain.
|
MappedServer |
MappedServer.setServerBinding(ServerBinding serverBinding)
Sets the Domain that this MappedDomain is based on.
|
Modifier and Type | Method and Description |
---|---|
boolean |
Domain.addAllServerBindings(Collection<ServerBinding> serverBindings)
Adds the ServerBindings provided to the list of ServerBindings in this Domain.
|
boolean |
MappedDomain.addMappedServers(List<ServerBinding> serverBindings)
adds a mapped server to this mapped domain for each server binding in the specified list
|
Constructor and Description |
---|
MappedServer(ServerBinding serverBinding)
Creates an instance of MappedServer based on the ServerBinding specified.
|