Skip navigation links

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09


weblogic.management.configuration
Interface NetworkAccessPointMBean

All Superinterfaces:
ConfigurationMBean, DescriptorBean, DynamicMBean, MBeanRegistration, NotificationBroadcaster, SettableBean, WebLogicMBean

public interface NetworkAccessPointMBean
extends ConfigurationMBean

A server can specify additional network connections by using a NetworkAccessPointMBean. The NetworkAccessPointMBean is also used to set the listen address and external DNS name that a server uses for a particular channel.

Since:
7.0.0.0
See Also:
ServerTemplateMBean, ServerTemplateMBean.getNetworkAccessPoints()

Field Summary

 

Fields inherited from interface weblogic.management.configuration.ConfigurationMBean
DEFAULT_EMPTY_BYTE_ARRAY

 

Method Summary
abstract  int getAcceptBacklog()
          The number of backlogged, new TCP connection requests that this network channel allows.
abstract  int getChannelWeight()
          A weight to give this channel when creating server-to-server connections.
abstract  String[] getCiphersuites()
          Indicates the cipher suites being used on a particular WebLogic Server channel.
abstract  String getClusterAddress()
          The address this network channel uses to generate EJB handles and failover addresses for use in a cluster.
abstract  int getCompleteMessageTimeout()
          The maximum amount of time this network channel waits for a complete message to be received.
abstract  int getConnectTimeout()
          The amount of time that this network channel should wait to establish an outbound socket connection before timing out.
abstract  String getCustomIdentityKeyStoreFileName()
          The source of the identity keystore.
abstract  String getCustomIdentityKeyStorePassPhrase()
          The encrypted custom identity keystore's passphrase.
abstract  byte[] getCustomIdentityKeyStorePassPhraseEncrypted()
          Returns encrypted pass phrase defined when creating the keystore.
abstract  String getCustomIdentityKeyStoreType()
          The type of the keystore.
abstract  String getCustomPrivateKeyAlias()
          The string alias used to store and retrieve the channel's private key in the keystore.
abstract  String getCustomPrivateKeyPassPhrase()
          The passphrase used to retrieve the server's private key from the keystore.
abstract  byte[] getCustomPrivateKeyPassPhraseEncrypted()
          The encrypted form of passphrase used to retrieve the server's private key from the keystore.
abstract  String getHostnameVerifier()
          The name of the class that implements the weblogic.security.SSL.HostnameVerifier interface.
abstract  int getIdleConnectionTimeout()
          The maximum amount of time (in seconds) that a connection is allowed to be idle before it is closed by this network channel.
abstract  String getInboundCertificateValidation()
          Indicates the client certificate validation rules for inbound SSL.
abstract  String getListenAddress()
          The IP address or DNS name this network channel uses to listen for incoming connections.
abstract  int getListenPort()
          The default TCP port this network channel uses to listen for regular (non-SSL) incoming connections.
abstract  int getLoginTimeoutMillis()
          The amount of time that this network channel should wait for a connection before timing out.
abstract  int getMaxBackoffBetweenFailures()
          The maximum back off time between failures while accepting client connections.
abstract  int getMaxConnectedClients()
          The maximum number of clients that can be connected on this network channel.
abstract  int getMaxMessageSize()
          The maximum message size allowable in a message header.
abstract  String getMinimumTLSProtocolVersion()
          Get the minimum SSL/TLS protocol version to be used in a network channel.
abstract  String getName()
          The name of this network channel.
abstract  String getOutboundCertificateValidation()
          Indicates the server certificate validation rules for outbound SSL.
abstract  String getOutboundPrivateKeyAlias()
          The string alias used to store and retrieve the outbound private key in the keystore.
abstract  String getOutboundPrivateKeyPassPhrase()
          The passphrase used to retrieve the outbound private key from the keystore.
abstract  String getPrivateKeyAlias()
          The string alias used to store and retrieve the channel's private key in the keystore.
abstract  String getPrivateKeyPassPhrase()
          The passphrase used to retrieve the server's private key from the keystore.
abstract  String getProtocol()
          The protocol this network channel should use for connections.
abstract  String getProxyAddress()
          The IP address or DNS name of the HTTP proxy to use for outbound connections on this channel.
abstract  int getProxyPort()
          The port of the HTTP proxy to use for outbound connections on this channel.
abstract  String getPublicAddress()
          The IP address or DNS name representing the external identity of this network channel.
abstract  int getPublicPort()
          The externally published listen port for this network channel.
abstract  boolean getResolveDNSName()
          Resolve the listen address to use for all T3 communication
abstract  boolean getTimeoutConnectionWithPendingResponses()
          Determines if connections with pending responses are allowed to timeout.
abstract  int getTunnelingClientPingSecs()
          The interval (in seconds) at which this network channel should ping an HTTP-tunneled client to see if its still alive.
abstract  int getTunnelingClientTimeoutSecs()
          The amount of time (in seconds) after which this network channel considers a missing HTTP-tunneled client to be dead.
abstract  boolean getUseFastSerialization()
          Specifies whether to use non-standard object serialization for performance.
abstract  boolean isAllowUnencryptedNullCipher()
          Test if the AllowUnEncryptedNullCipher is enabled
abstract  boolean isChannelIdentityCustomized()
          Whether or not the channel's custom identity should be used.
abstract  boolean isClientCertificateEnforced()
          Specifies whether clients must present digital certificates from a trusted certificate authority to WebLogic Server on this channel.
abstract  boolean isEnabled()
          Specifies whether this channel should be started.
abstract  boolean isHostnameVerificationIgnored()
          Specifies whether to ignore the installed implementation of the weblogic.security.SSL.HostnameVerifier interface (when this server is acting as a client to another application server).
abstract  boolean isHttpEnabledForThisProtocol()
          Specifies whether HTTP traffic should be allowed over this network channel.
abstract  boolean isOutboundEnabled()
          Specifies whether new server-to-server connections may consider this network channel when initiating a connection.
abstract  boolean isOutboundPrivateKeyEnabled()
          Specifies whether the identity specified by NetworkAccessPointMBean.getCustomPrivateKeyAlias() should be used for outbound SSL connections on this channel.
abstract  boolean isSDPEnabled()
          Enables Socket Direct Protocol (SDP) on this channel.
abstract  boolean isSSLv2HelloEnabled()
          Indicate whether SSLv2Hello is enabled in a network channel.
abstract  boolean isTunnelingEnabled()
          Specifies whether tunneling via HTTP should be enabled for this network channel.
abstract  boolean isTwoWaySSLEnabled()
          Specifies whether this network channel uses two way SSL.
abstract  void setAcceptBacklog(int count)
          Sets the value of the AcceptBacklog attribute.
abstract  void setAllowUnencryptedNullCipher(boolean enable)
          When a SSL server and a SSL client try to negotiate a commonly supported Cipher, there is a chance that they may end up with nothing in common.
abstract  void setChannelIdentityCustomized(boolean val)
          Sets the value of the ChannelIdentityCustomized attribute.
abstract  void setChannelWeight(int weight)
          Sets the value of the ChannelWeight attribute.
abstract  void setCiphersuites(String[] ciphers)
          Sets the value of the Ciphersuites attribute.
abstract  void setClientCertificateEnforced(boolean enforce)
          Sets the value of the ClientCertificateEnabled attribute.
abstract  void setClusterAddress(String address)
          Sets the value of the ClusterAddress attribute.
abstract  void setCompleteCOMMessageTimeout(int seconds)
          Sets the value of the CompleteCOMMessageTimeout attribute.
abstract  void setCompleteHTTPMessageTimeout(int seconds)
          Sets the value of the CompleteHTTPMessageTimeout attribute.
abstract  void setCompleteIIOPMessageTimeout(int seconds)
          Sets the value of the CompleteIIOPMessageTimeout attribute.
abstract  void setCompleteMessageTimeout(int seconds)
          Sets the value of the CompleteMessageTimeout attribute.
abstract  void setCompleteT3MessageTimeout(int seconds)
          Sets the value of the CompleteT3MessageTimeout attribute.
abstract  void setConnectTimeout(int timeout)
          Sets the value of the ConnectTimeout attribute.
abstract  void setCustomIdentityKeyStoreFileName(String fileName)
          Sets the value of the CustomIdentityKeyStoreFileName attribute.
abstract  void setCustomIdentityKeyStorePassPhrase(String passPhrase)
          Sets the value of the CustomIdentityKeyStorePassPhrase attribute.
abstract  void setCustomIdentityKeyStorePassPhraseEncrypted(byte[] passPhraseEncrypted)
          Sets the encrypted value of the CustomIdentityKeyStorePassPhrase attribute.
abstract  void setCustomIdentityKeyStoreType(String type)
          Sets the value of the CustomIdentityKeyStoreType attribute.
abstract  void setCustomPrivateKeyAlias(String alias)
          Sets the value of the PrivateKeyAlias attribute.
abstract  void setCustomPrivateKeyPassPhrase(String phrase)
          Sets the value of the PrivateKeyPassPhrase attribute.
abstract  void setCustomPrivateKeyPassPhraseEncrypted(byte[] passwordEncrypted)
          Sets the encrypted value of the PrivateKeyPassPhrase attribute.
abstract  void setEnabled(boolean enabled)
          Sets the value of the Enabled attribute.
abstract  void setExternalDNSName(String externalDNSName)
          Sets the value of the ExternalDNSName attribute.
abstract  void setHostnameVerificationIgnored(boolean ignoreFlag)
          Sets the value of the HostnameVerificationIgnored attribute.
abstract  void setHostnameVerifier(String classname)
          Sets the value of the HostnameVerifier attribute.
abstract  void setHttpEnabledForThisProtocol(boolean enabled)
          Sets the value of the HttpEnabledForThisProtocol attribute.
abstract  void setIdleConnectionTimeout(int seconds)
          Sets the value of the IdleConnectionTimeout attribute.
abstract  void setIdleIIOPConnectionTimeout(int seconds)
          Sets the value of the IdleIIOPConnectionTimeout attribute.
abstract  void setInboundCertificateValidation(String validationStyle)
          Sets the value of the InboundCertificateValidation attribute.
abstract  void setListenAddress(String address)
          Sets the value of the ListenAddress attribute.
abstract  void setListenPort(int port)
          Sets the value of the ListenPort attribute.
abstract  void setLoginTimeoutMillis(int timeout)
          Sets the value of the LoginTimeoutMillis attribute.
abstract  void setLoginTimeoutMillisSSL(int millis)
          Sets the value of the LoginTimeoutMillisSSL attribute.
abstract  void setMaxBackoffBetweenFailures(int milliSeconds)
          Sets the value of the MaxBackoffBetweenFailures attribute.
abstract  void setMaxConnectedClients(int count)
          Sets the value of the MaxConnectedClients attribute.
abstract  void setMaxMessageSize(int maxsize)
          Sets the value of the MaxMessageSize attribute.
abstract  void setMinimumTLSProtocolVersion(String minimumTLSProtocolVersion)
          Set the minimum SSL/TLS protocol version
abstract  void setName(String name)
          Sets the value of the Name attribute.
abstract  void setOutboundCertificateValidation(String validationStyle)
          Sets the value of the OutboundCertificateValidation attribute.
abstract  void setOutboundEnabled(boolean enabled)
          Sets the value of the OutboundEnabled attribute.
abstract  void setOutboundPrivateKeyEnabled(boolean enabled)
          Sets the value of the OutboundPrivateKeyEnabled attribute.
abstract  void setProtocol(String protocol)
          Sets the value of the Protocol attribute.
abstract  void setProxyAddress(String address)
          Sets the value of the ProxyAddress attribute.
abstract  void setProxyPort(int port)
          Sets the value of the ProxyPort attribute.
abstract  void setPublicAddress(String address)
          Sets the value of the PublicAddress attribute.
abstract  void setPublicPort(int port)
          Sets the value of the PublicPort attribute.
abstract  void setResolveDNSName(boolean flag)
          Sets the value of the ResolveDNSName attribute.
abstract  void setSDPEnabled(boolean enable)
          Set whether the channel should be using SDP protocol.
abstract  void setSSLListenPort(int port)
          Sets the value of the SLListenPort attribute.
abstract  void setTimeoutConnectionWithPendingResponses(boolean timeout)
          Sets the value of the TimeoutConnectionWithPendingResponses attribute.
abstract  void setTunnelingClientPingSecs(int secs)
          Sets the value of the TunnelingClientPingSecs attribute.
abstract  void setTunnelingClientTimeoutSecs(int secs)
          Sets the value of the TunnelingClientTimeoutSecs attribute.
abstract  void setTunnelingEnabled(boolean enabled)
          Sets the value of the TunnelingEnabled attribute.
abstract  void setTwoWaySSLEnabled(boolean enabled)
          Sets the value of the TwoWaySSLEnabled attribute.
abstract  void setUseFastSerialization(boolean enabled)
          Sets the value of the UseFastSerialization attribute.

 

Methods inherited from interface weblogic.management.configuration.ConfigurationMBean
freezeCurrentValue, getId, getInheritedProperties, getNotes, isDynamicallyCreated, isInherited, isSet, restoreDefaultValue, setComments, setDefaultedMBean, setNotes, setPersistenceEnabled, unSet

 

Methods inherited from interface weblogic.management.WebLogicMBean
getMBeanInfo, getObjectName, getParent, getType, isCachingDisabled, isRegistered, setParent

 

Methods inherited from interface javax.management.DynamicMBean
getAttribute, getAttributes, invoke, setAttribute, setAttributes

 

Methods inherited from interface javax.management.MBeanRegistration
postDeregister, postRegister, preDeregister, preRegister

 

Methods inherited from interface javax.management.NotificationBroadcaster
addNotificationListener, getNotificationInfo, removeNotificationListener

 

Methods inherited from interface weblogic.descriptor.DescriptorBean
addPropertyChangeListener, createChildCopyIncludingObsolete, getParentBean, isEditable, removePropertyChangeListener

 

Method Detail

getName

String getName()

The name of this network channel.

Specified by:
getName in interface ConfigurationMBean
Specified by:
getName in interface WebLogicMBean
Returns:
The name value

setName

void setName(String name)
             throws InvalidAttributeValueException

Sets the value of the Name attribute.

Specified by:
setName in interface ConfigurationMBean
Specified by:
setName in interface WebLogicMBean
Parameters:
name - The new name value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getName()

getProtocol

String getProtocol()

The protocol this network channel should use for connections.

Returns:
The protocol value

setProtocol

void setProtocol(String protocol)
                 throws InvalidAttributeValueException

Sets the value of the Protocol attribute.

Parameters:
protocol - The new protocol value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getProtocol()

getListenAddress

String getListenAddress()

The IP address or DNS name this network channel uses to listen for incoming connections. A value of null indicates that the network channel should obtain this value from the server's configuration.

Returns:
The listenAddress value
See Also:
ServerTemplateMBean.getListenAddress()

setListenAddress

void setListenAddress(String address)
                      throws InvalidAttributeValueException

Sets the value of the ListenAddress attribute.

Parameters:
address - The new listenAddress value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getListenAddress()

getPublicAddress

String getPublicAddress()

The IP address or DNS name representing the external identity of this network channel. A value of null indicates that the network channel's Listen Address is also its external address. If the Listen Address is null,the network channel obtains its external identity from the server's configuration.

This is required for the configurations which need to cross a firewall doing Network Address Translation.

Returns:
The publicAddress value
See Also:
NetworkAccessPointMBean.getExternalDNSName(), NetworkAccessPointMBean.getListenAddress(), ServerTemplateMBean.getListenAddress()

setPublicAddress

void setPublicAddress(String address)
                      throws InvalidAttributeValueException

Sets the value of the PublicAddress attribute.

Parameters:
address - The new publicAddress value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getPublicAddress()

getListenPort

int getListenPort()

The default TCP port this network channel uses to listen for regular (non-SSL) incoming connections. A value of -1 indicates that the network channel should obtain this value from the server's configuration.

Returns:
The listenPort value
See Also:
ServerTemplateMBean.getListenPort()

setListenPort

void setListenPort(int port)
                   throws InvalidAttributeValueException

Sets the value of the ListenPort attribute.

Parameters:
port - The new listenPort value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getListenPort()

getPublicPort

int getPublicPort()

The externally published listen port for this network channel. A value of -1 indicates that the network channel's Listen Port is also its public listen port. If the Listen Port is -1,the network channel obtains its public listen port from the server's configuration.

Returns:
The publicPort value
See Also:
NetworkAccessPointMBean.getListenPort(), ServerTemplateMBean.getListenPort()

setPublicPort

void setPublicPort(int port)
                   throws InvalidAttributeValueException

Sets the value of the PublicPort attribute.

Parameters:
port - The new publicPort value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getPublicPort()

getResolveDNSName

boolean getResolveDNSName()

Resolve the listen address to use for all T3 communication

Returns:
The resolveDNSName value
See Also:
NetworkAccessPointMBean.getListenAddress(), NetworkAccessPointMBean.getPublicAddress()

setResolveDNSName

void setResolveDNSName(boolean flag)

Sets the value of the ResolveDNSName attribute.

Parameters:
flag - The new resolveDNSName value
See Also:
NetworkAccessPointMBean.getResolveDNSName()

getProxyAddress

String getProxyAddress()

The IP address or DNS name of the HTTP proxy to use for outbound connections on this channel. The HTTP proxy must support the CONNECT tunneling command.

This option is only effective when OutboundEnabled is set on the channel.

Returns:
The proxyAddress value

setProxyAddress

void setProxyAddress(String address)
                     throws InvalidAttributeValueException

Sets the value of the ProxyAddress attribute.

Parameters:
address - The new proxyAddress value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getProxyAddress()

getProxyPort

int getProxyPort()

The port of the HTTP proxy to use for outbound connections on this channel. The HTTP proxy must support the CONNECT tunneling command.

This option is only effective when OutboundEnabled and ProxyHost are set on the channel.

Returns:
The proxyPort value

setProxyPort

void setProxyPort(int port)
                  throws InvalidAttributeValueException

Sets the value of the ProxyPort attribute.

Parameters:
port - The new proxyPort value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getProxyPort()

isHttpEnabledForThisProtocol

boolean isHttpEnabledForThisProtocol()

Specifies whether HTTP traffic should be allowed over this network channel.

HTTP is generally required by binary protocols for downloading stubs and other resources.

Returns:
The httpEnabledForThisProtocol value

setHttpEnabledForThisProtocol

void setHttpEnabledForThisProtocol(boolean enabled)
                                   throws InvalidAttributeValueException

Sets the value of the HttpEnabledForThisProtocol attribute.

Parameters:
enabled - The new httpEnabledForThisProtocol value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isHttpEnabledForThisProtocol()

getAcceptBacklog

int getAcceptBacklog()

The number of backlogged, new TCP connection requests that this network channel allows. A value of -1 indicates that the network channel obtains its backlog configuration from the server's configuration.

Returns:
The acceptBacklog value
See Also:
ServerTemplateMBean.getAcceptBacklog()

setAcceptBacklog

void setAcceptBacklog(int count)
                      throws InvalidAttributeValueException

Sets the value of the AcceptBacklog attribute.

Parameters:
count - The new acceptBacklog value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getAcceptBacklog()

getMaxBackoffBetweenFailures

int getMaxBackoffBetweenFailures()

The maximum back off time between failures while accepting client connections. -1 implies that this value is inherited from the server.


setMaxBackoffBetweenFailures

void setMaxBackoffBetweenFailures(int milliSeconds)
                                  throws InvalidAttributeValueException

Sets the value of the MaxBackoffBetweenFailures attribute.

Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getMaxBackoffBetweenFailures()

getLoginTimeoutMillis

int getLoginTimeoutMillis()

The amount of time that this network channel should wait for a connection before timing out. A value of 0 disables network channel login timeout. A value of -1 indicates that the network channel obtains this timeout value from the server's configuration.

Returns:
The loginTimeoutMillis value
See Also:
ServerTemplateMBean.getLoginTimeoutMillis()

setLoginTimeoutMillis

void setLoginTimeoutMillis(int timeout)
                           throws InvalidAttributeValueException,
                                  DistributedManagementException

Sets the value of the LoginTimeoutMillis attribute.

Parameters:
timeout - The new loginTimeoutMillis value
Throws:
InvalidAttributeValueException
DistributedManagementException

getTunnelingClientPingSecs

int getTunnelingClientPingSecs()

The interval (in seconds) at which this network channel should ping an HTTP-tunneled client to see if its still alive. A value of -1 indicates that the network channel obtains this interval from the ServerTemplateMBean. (Requires you to enable tunneling for the network channel.)

Returns:
The tunnelingClientPingSecs value
See Also:
ServerTemplateMBean.getTunnelingClientPingSecs(), NetworkAccessPointMBean.isTunnelingEnabled()

setTunnelingClientPingSecs

void setTunnelingClientPingSecs(int secs)
                                throws InvalidAttributeValueException

Sets the value of the TunnelingClientPingSecs attribute.

Parameters:
secs - The new tunnelingClientPingSecs value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getTunnelingClientPingSecs()

getTunnelingClientTimeoutSecs

int getTunnelingClientTimeoutSecs()

The amount of time (in seconds) after which this network channel considers a missing HTTP-tunneled client to be dead. A value of -1 indicates that the network channel obtains this timeout value from the ServerTemplateMBean. (Requires you to enable tunneling for the network channel.)

Returns:
The tunnelingClientTimeoutSecs value
See Also:
ServerTemplateMBean.getTunnelingClientTimeoutSecs(), NetworkAccessPointMBean.isTunnelingEnabled()

setTunnelingClientTimeoutSecs

void setTunnelingClientTimeoutSecs(int secs)
                                   throws InvalidAttributeValueException

Sets the value of the TunnelingClientTimeoutSecs attribute.

Parameters:
secs - The new tunnelingClientTimeoutSecs value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getTunnelingClientTimeoutSecs()

isTunnelingEnabled

boolean isTunnelingEnabled()

Specifies whether tunneling via HTTP should be enabled for this network channel. This value is not inherited from the server's configuration.

Returns:
The tunnelingEnabled value

setTunnelingEnabled

void setTunnelingEnabled(boolean enabled)
                         throws InvalidAttributeValueException

Sets the value of the TunnelingEnabled attribute.

Parameters:
enabled - The new tunnelingEnabled value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isTunnelingEnabled()

getCompleteMessageTimeout

int getCompleteMessageTimeout()

The maximum amount of time this network channel waits for a complete message to be received. A value of 0 disables network channel complete message timeout. A value of -1 indicates that the network channel obtains this timeout value from the ServerTemplateMBean.

This timeout helps guard against denial of service attacks in which a caller indicates that they will be sending a message of a certain size which they never finish sending.

Returns:
The completeMessageTimeout value

setCompleteMessageTimeout

void setCompleteMessageTimeout(int seconds)
                               throws InvalidAttributeValueException,
                                      DistributedManagementException

Sets the value of the CompleteMessageTimeout attribute.

Parameters:
seconds - The new completeMessageTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getCompleteMessageTimeout()

getTimeoutConnectionWithPendingResponses

boolean getTimeoutConnectionWithPendingResponses()

Determines if connections with pending responses are allowed to timeout. It defaults to false. If set to true, the connection will be timed out for this channel if it exceeds the idleConnectionTimeout value.

Note: This setting only applies to IIOP connections.

Returns:
Whether or not to timeout connections with pending responses

setTimeoutConnectionWithPendingResponses

void setTimeoutConnectionWithPendingResponses(boolean timeout)
                                              throws InvalidAttributeValueException,
                                                     DistributedManagementException

Sets the value of the TimeoutConnectionWithPendingResponses attribute.

Parameters:
timeout - Whether or not to timeout connections with pending responses
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getTimeoutConnectionWithPendingResponses()

getIdleConnectionTimeout

int getIdleConnectionTimeout()

The maximum amount of time (in seconds) that a connection is allowed to be idle before it is closed by this network channel. A value of -1 indicates that the network channel obtains this timeout value from the ServerTemplateMBean.

This timeout helps guard against server deadlock through too many open connections.

Returns:
The idleConnectionTimeout value

setIdleConnectionTimeout

void setIdleConnectionTimeout(int seconds)
                              throws InvalidAttributeValueException,
                                     DistributedManagementException

Sets the value of the IdleConnectionTimeout attribute.

Parameters:
seconds - The new idleConnectionTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getIdleConnectionTimeout()

getConnectTimeout

int getConnectTimeout()

The amount of time that this network channel should wait to establish an outbound socket connection before timing out. A value of 0 disables network channel connect timeout.

Returns:
The connectTimeout value

setConnectTimeout

void setConnectTimeout(int timeout)
                       throws InvalidAttributeValueException,
                              DistributedManagementException

Sets the value of the ConnectTimeout attribute.

Parameters:
timeout - The new connectTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException

getMaxMessageSize

int getMaxMessageSize()

The maximum message size allowable in a message header.

This maximum attempts to prevent a denial of service attack whereby a caller attempts to force the server to allocate more memory than is available thereby keeping the server from responding quickly to other requests.

A client can set this value using the -Dweblogic.MaxMessageSize property.

Returns:
The maxMessageSize value

setMaxMessageSize

void setMaxMessageSize(int maxsize)
                       throws InvalidAttributeValueException,
                              DistributedManagementException

Sets the value of the MaxMessageSize attribute.

Parameters:
maxsize - The new maxMessageSize value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getMaxMessageSize()

isOutboundEnabled

boolean isOutboundEnabled()

Specifies whether new server-to-server connections may consider this network channel when initiating a connection. This is only relevant if the connection needs to be bound to the network channel's listen address. This will only work for binary protocols that support both outbound and inbound traffic.

When this feature is not enabled, connections are initiated using a local address selected by the underlying hardware.

The default is false.

Outbound channels are selected at runtime either by virtue of the fact of being the only outbound-enabled channel for the required protocol, or by name in weblogic.jndi.Environment#setProviderChannel.

The HTTP protocol is implicitly enabled for all the outbound channels, but you need to use the WLS client library (HTTP client) and set the channel on the connection.

Returns:
The OutboundEnabled value
See Also:
HttpURLConnection.setSocketFactory(javax.net.SocketFactory)

setOutboundEnabled

void setOutboundEnabled(boolean enabled)
                        throws InvalidAttributeValueException

Sets the value of the OutboundEnabled attribute.

Parameters:
enabled - The new outboundEnabled value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isOutboundEnabled()

getChannelWeight

int getChannelWeight()

A weight to give this channel when creating server-to-server connections.

Returns:
The channelWeight value

setChannelWeight

void setChannelWeight(int weight)
                      throws InvalidAttributeValueException

Sets the value of the ChannelWeight attribute.

Parameters:
weight - The new channelWeight value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getChannelWeight()

getClusterAddress

String getClusterAddress()

The address this network channel uses to generate EJB handles and failover addresses for use in a cluster. This value is determined according to the following order of precedence:

  1. If the cluster address is specified via the NAPMBean, then that value is used
  2. If this value is not specified, the value of PublicAddress is used.
  3. If PublicAddress is not set, this value is derive from the ClusterAddress attribute of the ClusterMbean.
  4. If ClusterMbean.clusterAddress is not set, this value is derive from the listen address of the NAPMbean.
Returns:
The clusterAddress value
See Also:
NetworkAccessPointMBean.getPublicAddress(), ClusterMBean.getClusterAddress()

setClusterAddress

void setClusterAddress(String address)
                       throws InvalidAttributeValueException

Sets the value of the ClusterAddress attribute.

Parameters:
address - The new clusterAddress value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getClusterAddress()

isEnabled

boolean isEnabled()

Specifies whether this channel should be started.

Returns:
The enabled value

setEnabled

void setEnabled(boolean enabled)
                throws InvalidAttributeValueException

Sets the value of the Enabled attribute.

Parameters:
enabled - The new enabled value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isEnabled()

getMaxConnectedClients

int getMaxConnectedClients()

The maximum number of clients that can be connected on this network channel.

Returns:
The max connected count value

setMaxConnectedClients

void setMaxConnectedClients(int count)
                            throws InvalidAttributeValueException

Sets the value of the MaxConnectedClients attribute.

Parameters:
count - The new count value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getMaxConnectedClients()

isTwoWaySSLEnabled

boolean isTwoWaySSLEnabled()

Specifies whether this network channel uses two way SSL.

Returns:
The TwoWaySSLEnabled value

setTwoWaySSLEnabled

void setTwoWaySSLEnabled(boolean enabled)

Sets the value of the TwoWaySSLEnabled attribute.

Parameters:
enabled - The new twoWaySSLEnabled value
See Also:
NetworkAccessPointMBean.isTwoWaySSLEnabled()

isChannelIdentityCustomized

boolean isChannelIdentityCustomized()

Whether or not the channel's custom identity should be used. This setting only has an effect if the server is using a customized keystore. By default the channel's identity is inherited from the server's identity.

Returns:
The ChannelIdentityCustomzied value
See Also:
SSLMBean.getServerPrivateKeyAlias(), NetworkAccessPointMBean.getCustomPrivateKeyAlias()

setChannelIdentityCustomized

void setChannelIdentityCustomized(boolean val)

Sets the value of the ChannelIdentityCustomized attribute.

Parameters:
val - The new ChannelIdentityCustomzied value
See Also:
NetworkAccessPointMBean.isChannelIdentityCustomized()

getCustomPrivateKeyAlias

String getCustomPrivateKeyAlias()

The string alias used to store and retrieve the channel's private key in the keystore. This private key is associated with the server's digital certificate. A value of null indicates that the network channel uses the alias specified in the server's SSL configuration.

Returns:
The CustomPrivateKeyAlias value
See Also:
SSLMBean.getServerPrivateKeyAlias()

setCustomPrivateKeyAlias

void setCustomPrivateKeyAlias(String alias)

Sets the value of the PrivateKeyAlias attribute.

Parameters:
alias - The new PrivateKeyAlias value
See Also:
NetworkAccessPointMBean.getCustomPrivateKeyAlias()

getPrivateKeyAlias

String getPrivateKeyAlias()

The string alias used to store and retrieve the channel's private key in the keystore. This private key is associated with the server's digital certificate. This value is derived from other settings on the channel and cannot be physically set.

Returns:
The PrivateKeyAlias value
See Also:
SSLMBean.getServerPrivateKeyAlias(), NetworkAccessPointMBean.getCustomPrivateKeyAlias()

getCustomPrivateKeyPassPhrase

String getCustomPrivateKeyPassPhrase()

The passphrase used to retrieve the server's private key from the keystore. This passphrase is assigned to the private key when it is generated. A value of null indicates that the network channel uses the pass phrase specified in the server's SSL configuration.

Returns:
The CustomPrivateKeyPassPhrase value
See Also:
SSLMBean.getServerPrivateKeyPassPhrase()

setCustomPrivateKeyPassPhrase

void setCustomPrivateKeyPassPhrase(String phrase)

Sets the value of the PrivateKeyPassPhrase attribute.

Parameters:
phrase - The new PrivateKeyPassPhrase value
See Also:
NetworkAccessPointMBean.getCustomPrivateKeyPassPhrase()

getPrivateKeyPassPhrase

String getPrivateKeyPassPhrase()

The passphrase used to retrieve the server's private key from the keystore. This passphrase is assigned to the private key when it is generated. This value is derived from other settings on the channel and cannot be physically set.

Returns:
The PrivateKeyPassPhrase value
See Also:
SSLMBean.getServerPrivateKeyPassPhrase(), NetworkAccessPointMBean.getCustomPrivateKeyPassPhrase()

getCustomPrivateKeyPassPhraseEncrypted

byte[] getCustomPrivateKeyPassPhraseEncrypted()

The encrypted form of passphrase used to retrieve the server's private key from the keystore.


setCustomPrivateKeyPassPhraseEncrypted

void setCustomPrivateKeyPassPhraseEncrypted(byte[] passwordEncrypted)

Sets the encrypted value of the PrivateKeyPassPhrase attribute.

Parameters:
passwordEncrypted -

isClientCertificateEnforced

boolean isClientCertificateEnforced()

Specifies whether clients must present digital certificates from a trusted certificate authority to WebLogic Server on this channel.

Returns:
The ClientCertificateEnforced value

setClientCertificateEnforced

void setClientCertificateEnforced(boolean enforce)

Sets the value of the ClientCertificateEnabled attribute.

Parameters:
enforce - The new ClientCertificateEnforced value
See Also:
NetworkAccessPointMBean.isClientCertificateEnforced()

isOutboundPrivateKeyEnabled

boolean isOutboundPrivateKeyEnabled()

Specifies whether the identity specified by NetworkAccessPointMBean.getCustomPrivateKeyAlias() should be used for outbound SSL connections on this channel. In normal circumstances the outbound identity is determined by the caller's environment.

Returns:
The OutboundPrivateKeyEnabled value

setOutboundPrivateKeyEnabled

void setOutboundPrivateKeyEnabled(boolean enabled)
                                  throws InvalidAttributeValueException

Sets the value of the OutboundPrivateKeyEnabled attribute.

Parameters:
enabled - The new outboundEnabled value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isOutboundEnabled()

getUseFastSerialization

boolean getUseFastSerialization()

Specifies whether to use non-standard object serialization for performance. This option works in different ways for different protocols. In particular under IIOP this option uses Java serialization rather than RMI-IIOP serialization. In general using non-standard serialization is not suitable for interop scenarios and may imply some feature loss.

Returns:
The UseFastSerialization value

setUseFastSerialization

void setUseFastSerialization(boolean enabled)
                             throws InvalidAttributeValueException

Sets the value of the UseFastSerialization attribute.

Parameters:
enabled - The new UseFastSerialization value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getUseFastSerialization()

setIdleIIOPConnectionTimeout

void setIdleIIOPConnectionTimeout(int seconds)
                                  throws InvalidAttributeValueException,
                                         DistributedManagementException

Sets the value of the IdleIIOPConnectionTimeout attribute.

Parameters:
seconds - The new idleIIOPConnectionTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getIdleIIOPConnectionTimeout()

setSSLListenPort

void setSSLListenPort(int port)
                      throws InvalidAttributeValueException

Sets the value of the SLListenPort attribute.

Parameters:
port - The new sSLListenPort value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getSSLListenPort()

setExternalDNSName

void setExternalDNSName(String externalDNSName)
                        throws InvalidAttributeValueException

Sets the value of the ExternalDNSName attribute.

Parameters:
externalDNSName - The new externalDNSName value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getExternalDNSName()

setLoginTimeoutMillisSSL

void setLoginTimeoutMillisSSL(int millis)
                              throws InvalidAttributeValueException

Sets the value of the LoginTimeoutMillisSSL attribute.

Parameters:
millis - The new loginTimeoutMillisSSL value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getLoginTimeoutMillisSSL()

setCompleteT3MessageTimeout

void setCompleteT3MessageTimeout(int seconds)
                                 throws InvalidAttributeValueException,
                                        DistributedManagementException

Sets the value of the CompleteT3MessageTimeout attribute.

Parameters:
seconds - The new completeT3MessageTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getCompleteT3MessageTimeout()

setCompleteHTTPMessageTimeout

void setCompleteHTTPMessageTimeout(int seconds)
                                   throws InvalidAttributeValueException,
                                          DistributedManagementException

Sets the value of the CompleteHTTPMessageTimeout attribute.

Parameters:
seconds - The new completeHTTPMessageTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getCompleteHTTPMessageTimeout()

setCompleteCOMMessageTimeout

void setCompleteCOMMessageTimeout(int seconds)
                                  throws InvalidAttributeValueException,
                                         DistributedManagementException

Sets the value of the CompleteCOMMessageTimeout attribute.

Parameters:
seconds - The new completeCOMMessageTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getCompleteCOMMessageTimeout()

setCompleteIIOPMessageTimeout

void setCompleteIIOPMessageTimeout(int seconds)
                                   throws InvalidAttributeValueException,
                                          DistributedManagementException

Sets the value of the CompleteIIOPMessageTimeout attribute.

Parameters:
seconds - The new completeIIOPMessageTimeout value
Throws:
InvalidAttributeValueException
DistributedManagementException
See Also:
NetworkAccessPointMBean.getCompleteIIOPMessageTimeout()

isSDPEnabled

boolean isSDPEnabled()
Enables Socket Direct Protocol (SDP) on this channel. Enable this attribute when configuring session replication enhancements for Managed Servers in a WebLogic cluster for Oracle Exalogic.

setSDPEnabled

void setSDPEnabled(boolean enable)
Set whether the channel should be using SDP protocol.

getOutboundPrivateKeyAlias

String getOutboundPrivateKeyAlias()

The string alias used to store and retrieve the outbound private key in the keystore. This private key is associated with either a server or a client digital certificate. This attribute value is derived from other settings and cannot be physically set.

The returned value is determined as follows:

Returns:
The OutboundPrivateKeyAlias value
See Also:
NetworkAccessPointMBean.isOutboundPrivateKeyEnabled(), NetworkAccessPointMBean.isChannelIdentityCustomized(), NetworkAccessPointMBean.getCustomPrivateKeyAlias(), SSLMBean.getOutboundPrivateKeyAlias()

getOutboundPrivateKeyPassPhrase

String getOutboundPrivateKeyPassPhrase()

The passphrase used to retrieve the outbound private key from the keystore. This passphrase is assigned to the private key when it is generated. This attribute value is derived from other settings and cannot be physically set.

The returned value is determined as follows:

See Also:
NetworkAccessPointMBean.isOutboundPrivateKeyEnabled(), NetworkAccessPointMBean.isChannelIdentityCustomized(), NetworkAccessPointMBean.getCustomPrivateKeyPassPhrase(), SSLMBean.getOutboundPrivateKeyPassPhrase()

getCustomIdentityKeyStoreFileName

String getCustomIdentityKeyStoreFileName()

The source of the identity keystore. For a JKS keystore, the source is the path and file name. For an Oracle Key Store Service (KSS) keystore, the source is the KSS URI.

If using a JKS keystore, the keystore path name must either be absolute or relative to where the server was booted.

If using a KSS keystore, the keystore URI must be of the form:

kss://system/keystorename

where keystorename is the name of the keystore registered in KSS.

The value in this attribute is only used if ServerMBean.KeyStores is CUSTOM_IDENTITY_AND_JAVA_STANDARD_TRUST, CUSTOM_IDENTITY_AND_CUSTOM_TRUST or CUSTOM_IDENTITY_AND_COMMAND_LINE_TRUST.

Returns:
The customIdentityKeyStoreFileName value

setCustomIdentityKeyStoreFileName

void setCustomIdentityKeyStoreFileName(String fileName)

Sets the value of the CustomIdentityKeyStoreFileName attribute.

Parameters:
fileName - The new customIdentityKeyStoreFileName value
See Also:
NetworkAccessPointMBean.getCustomIdentityKeyStoreFileName()

getCustomIdentityKeyStoreType

String getCustomIdentityKeyStoreType()

The type of the keystore. Generally, this is JKS. If using the Oracle Key Store Service, this would be KSS

If empty or null, then the JDK's default keystore type (specified in java.security) is used. The custom identity key store type is only used if ServerMBean.KeyStores is CUSTOM_IDENTITY_AND_JAVA_STANDARD_TRUST, CUSTOM_IDENTITY_AND_CUSTOM_TRUST or CUSTOM_IDENTITY_AND_COMMAND_LINE_TRUST.

Returns:
The customIdentityKeyStoreType value

setCustomIdentityKeyStoreType

void setCustomIdentityKeyStoreType(String type)

Sets the value of the CustomIdentityKeyStoreType attribute.

Parameters:
type - The new customIdentityKeyStoreType value
See Also:
NetworkAccessPointMBean.getCustomIdentityKeyStoreType()

getCustomIdentityKeyStorePassPhrase

String getCustomIdentityKeyStorePassPhrase()

The encrypted custom identity keystore's passphrase. If empty or null, then the keystore will be opened without a passphrase.

This attribute is only used if ServerMBean.KeyStores is CUSTOM_IDENTITY_AND_JAVA_STANDARD_TRUST, CUSTOM_IDENTITY_AND_CUSTOM_TRUST or CUSTOM_IDENTITY_AND_COMMAND_LINE_TRUST.

When you get the value of this attribute, WebLogic Server does the following:

  1. Retrieves the value of the CustomIdentityKeyStorePassPhraseEncrypted attribute.
  2. Decrypts the value and returns the unencrypted password as a String.

When you set the value of this attribute, WebLogic Server does the following:

  1. Encrypts the value.
  2. Sets the value of the CustomIdentityKeyStorePassPhraseEncrypted attribute to the encrypted value.

Using this attribute (CustomIdentityKeyStorePassPhrase) is a potential security risk because the String object (which contains the unencrypted password) remains in the JVM's memory until garbage collection removes it and the memory is reallocated. Depending on how memory is allocated in the JVM, a significant amount of time could pass before this unencrypted data is removed from memory.

Instead of using this attribute, use CustomIdentityKeyStorePassPhraseEncrypted.

Returns:
The customIdentityKeyStorePassPhrase value
See Also:
NetworkAccessPointMBean.getCustomIdentityKeyStorePassPhraseEncrypted()

setCustomIdentityKeyStorePassPhrase

void setCustomIdentityKeyStorePassPhrase(String passPhrase)

Sets the value of the CustomIdentityKeyStorePassPhrase attribute.

Parameters:
passPhrase - The new customIdentityKeyStorePassPhrase value
See Also:
NetworkAccessPointMBean.getCustomIdentityKeyStorePassPhrase(), NetworkAccessPointMBean.setCustomIdentityKeyStorePassPhraseEncrypted(byte[])

getCustomIdentityKeyStorePassPhraseEncrypted

byte[] getCustomIdentityKeyStorePassPhraseEncrypted()

Returns encrypted pass phrase defined when creating the keystore.

Returns:
The encrypted customIdentityKeyStorePassPhrase value

setCustomIdentityKeyStorePassPhraseEncrypted

void setCustomIdentityKeyStorePassPhraseEncrypted(byte[] passPhraseEncrypted)

Sets the encrypted value of the CustomIdentityKeyStorePassPhrase attribute.

Parameters:
passPhraseEncrypted - The new encrypted customIdentityKeyStorePassPhrase value
See Also:
NetworkAccessPointMBean.getCustomIdentityKeyStorePassPhraseEncrypted()

getHostnameVerifier

String getHostnameVerifier()

The name of the class that implements the weblogic.security.SSL.HostnameVerifier interface.

This class verifies whether the connection to the host with the hostname from URL should be allowed. The class is used to prevent man-in-the-middle attacks. The weblogic.security.SSL.HostnameVerifier has a verify() method that WebLogic Server calls on the client during the SSL handshake.

Returns:
The hostnameVerifier value

setHostnameVerifier

void setHostnameVerifier(String classname)
                         throws InvalidAttributeValueException

Sets the value of the HostnameVerifier attribute.

Parameters:
classname - The new hostnameVerifier value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.getHostnameVerifier()

isHostnameVerificationIgnored

boolean isHostnameVerificationIgnored()

Specifies whether to ignore the installed implementation of the weblogic.security.SSL.HostnameVerifier interface (when this server is acting as a client to another application server).

Returns:
The hostnameVerificationIgnored value

setHostnameVerificationIgnored

void setHostnameVerificationIgnored(boolean ignoreFlag)
                                    throws InvalidAttributeValueException

Sets the value of the HostnameVerificationIgnored attribute.

Parameters:
ignoreFlag - The new hostnameVerificationIgnored value
Throws:
InvalidAttributeValueException
See Also:
NetworkAccessPointMBean.isHostnameVerificationIgnored()

getCiphersuites

String[] getCiphersuites()

Indicates the cipher suites being used on a particular WebLogic Server channel.

The strongest negotiated cipher suite is chosen during the SSL handshake. The set of cipher suites used by default by JSEE depends on the specific JDK version with which WebLogic Server is configured.

For a list of possible values, see Cipher Suites.

Returns:
The ciphersuites value

setCiphersuites

void setCiphersuites(String[] ciphers)
                     throws InvalidAttributeValueException

Sets the value of the Ciphersuites attribute.

Parameters:
ciphers - The new ciphersuites value
Throws:
InvalidAttributeValueException - if the array is null or contains null elements.
See Also:
NetworkAccessPointMBean.getCiphersuites()

setAllowUnencryptedNullCipher

void setAllowUnencryptedNullCipher(boolean enable)

When a SSL server and a SSL client try to negotiate a commonly supported Cipher, there is a chance that they may end up with nothing in common. A NullCipher is a cipher providing no encryption for the SSL message between the client and server, and it may temporarily be used in the development environment if the SSL server and client share no common cipher for some reason. This is not a standard SSL feature, some SSL provider supports this feature

The AllowUnEncryptedNullCipher flag is used to control whether the NullCipher feature is enabled or not. If true, the SSL message may be unencrypted when SSL server and client shares no common cipher.

This AllowUnEncryptedNullCipher flag is only effective to SSL providers which support the NullCipher feature.

Warning: this NullCipher feature should NOT be enabled for a production environment, it may lead to unencrypted SSL message

By default, the AllowUnEncryptedNullCipher is false

Parameters:
enable - true to allow NullCipher feature

isAllowUnencryptedNullCipher

boolean isAllowUnencryptedNullCipher()

Test if the AllowUnEncryptedNullCipher is enabled

see setAllowUnencryptedNullCipher(boolean enable) for the NullCipher feature.

Returns:
true if NullCipher feature is allowed.
See Also:
NetworkAccessPointMBean.setAllowUnencryptedNullCipher(boolean)

getInboundCertificateValidation

String getInboundCertificateValidation()

Indicates the client certificate validation rules for inbound SSL.

This attribute only applies to ports and network channels using 2-way SSL.

Returns:
a String containing the validation style.

setInboundCertificateValidation

void setInboundCertificateValidation(String validationStyle)

Sets the value of the InboundCertificateValidation attribute.

Parameters:
validationStyle - the new validation style
See Also:
NetworkAccessPointMBean.getInboundCertificateValidation()

getOutboundCertificateValidation

String getOutboundCertificateValidation()

Indicates the server certificate validation rules for outbound SSL.

This attribute always applies to outbound SSL that is part of WebLogic Server (that is, an Administration Server talking to the Node Manager). It does not apply to application code in the server that is using outbound SSL unless the application code uses a weblogic.security.SSL.ServerTrustManager that is configured to use outbound SSL validation.

Returns:
a String containing the validation style.

setOutboundCertificateValidation

void setOutboundCertificateValidation(String validationStyle)

Sets the value of the OutboundCertificateValidation attribute.

Parameters:
validationStyle - the new validation style
See Also:
NetworkAccessPointMBean.getOutboundCertificateValidation()

getMinimumTLSProtocolVersion

String getMinimumTLSProtocolVersion()
Get the minimum SSL/TLS protocol version to be used in a network channel.
Returns:
the minimum TLS protocol version
See Also:
NetworkAccessPointMBean.setMinimumTLSProtocolVersion(String)

setMinimumTLSProtocolVersion

void setMinimumTLSProtocolVersion(String minimumTLSProtocolVersion)
                                  throws InvalidAttributeValueException
Set the minimum SSL/TLS protocol version
Parameters:
minimumTLSProtocolVersion - the new minimum SSL/TLS protocol version
Throws:
InvalidAttributeValueException

isSSLv2HelloEnabled

boolean isSSLv2HelloEnabled()
Indicate whether SSLv2Hello is enabled in a network channel.
Returns:
whether SSLv2Hello is enabled(only applicable if the configured JSSE provider supports SSLv2Hello).

Skip navigation links

Copyright 1996, 2015, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners.

Oracle Fusion Middleware
Java API Reference for Oracle WebLogic Server
12c (12.2.1)

Part Number E55141-01
P4 Change 1723563 on 2015/10/09