Class: MintPress::OracleWeblogic::AdminServer

Inherits:
Server show all
Includes:
MintLogger, Mixins::Properties, MBeanUtils, Utils
Defined in:
src/oracle-weblogic/lib/oracle-weblogic/model/admin_server.rb

Overview

A weblogic administration server. Note that this is just a special case of a weblogic server, and takes all of the same parameters as one. Also note that in the general case, you wouldn't use this resource directly, but instead it's properties are applied as static children of the Domain resource, since there is always one and only one weblogic administration server.

Since:

  • 0.1.0

Properties (Read/Write)

  • #listen_port ⇒ Integer (Default Value: Proc.new { r=nil ; admin_url = domain.get_property(:admin_url, disable_proc: true) if admin_url and URI(admin_url).scheme == "http" then r = URI(admin_url).port end ; r })
    derive listen_port from admin_url if it's set

    Property Attributes
    • defaultProc.new { r=nil ; admin_url = domain.get_property(:admin_url, disable_proc: true) if admin_url and URI(admin_url).scheme == "http" then r = URI(admin_url).port end ; r }
    
    
    60
    61
    62
    63
    64
    65
    66
    67
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/admin_server.rb', line 60
    
    property :listen_port, type: Integer, default: Proc.new { r=nil ;
    admin_url = domain.get_property(:admin_url, disable_proc: true)
      if admin_url and URI(admin_url).scheme == "http"
      then
        r = URI(admin_url).port
      end ;
    r
    }
  • #listen_address ⇒ String (Default Value: Proc.new { r=nil ; admin_url = domain.get_property(:admin_url, disable_proc: true) if admin_url then r = URI(admin_url).host end ; r })
    derive listen_address from admin_url if it's set

    Property Attributes
    • defaultProc.new { r=nil ; admin_url = domain.get_property(:admin_url, disable_proc: true) if admin_url then r = URI(admin_url).host end ; r }
    
    
    70
    71
    72
    73
    74
    75
    76
    77
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/admin_server.rb', line 70
    
    property :listen_address, type: String, default: Proc.new { r=nil ;
    admin_url = domain.get_property(:admin_url, disable_proc: true)
    if admin_url
    then
      r = URI(admin_url).host
    end ;
    r
    }
  • #version ⇒ String (Default Value: Proc.new { self.domain.version })
    Version of weblogic this property is being applied to

    Property Attributes
    • defaultProc.new { self.domain.version }
    
    
    9
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 9
    
    property :version, type: String, default: Proc.new { self.domain.version }
  • #name ⇒ String

    Property Attributes
    • short_name"Name"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    12
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 12
    
    property :Name, type: String
  • #notes ⇒ String
    "Optional information that you can include to describe this\nconfiguration."

    Property Attributes
    • short_name"Notes"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    15
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 15
    
    property :Notes, type: String, array: false, hash: false, short_name: "Notes", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Optional information that you can include to describe this\nconfiguration."
  • #administration_protocol ⇒ String
    "Returns the protocol to be used for administrative connections\nwhen none is specified."

    Property Attributes
    • short_name"AdministrationProtocol"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    18
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 18
    
    property :AdministrationProtocol, type: String, array: false, hash: false, short_name: "AdministrationProtocol", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the protocol to be used for administrative connections\nwhen none is specified."
  • #complete_com_message_timeout ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"

    Property Attributes
    • short_name"CompleteCOMMessageTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    21
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 21
    
    property :CompleteCOMMessageTimeout, type: Integer, array: false, hash: false, short_name: "CompleteCOMMessageTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"
  • #complete_http_message_timeout ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"

    Property Attributes
    • short_name"CompleteHTTPMessageTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    24
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 24
    
    property :CompleteHTTPMessageTimeout, type: Integer, array: false, hash: false, short_name: "CompleteHTTPMessageTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"
  • #complete_iiop_message_timeout ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"

    Property Attributes
    • short_name"CompleteIIOPMessageTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    27
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 27
    
    property :CompleteIIOPMessageTimeout, type: Integer, array: false, hash: false, short_name: "CompleteIIOPMessageTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"
  • #complete_message_timeout ⇒ Integer
    "The maximum number of seconds that this server waits for a\ncomplete message to be received."

    Property Attributes
    • short_name"CompleteMessageTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    30
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 30
    
    property :CompleteMessageTimeout, type: Integer, array: false, hash: false, short_name: "CompleteMessageTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of seconds that this server waits for a\ncomplete message to be received."
  • #complete_t3_message_timeout ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"

    Property Attributes
    • short_name"CompleteT3MessageTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    33
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 33
    
    property :CompleteT3MessageTimeout, type: Integer, array: false, hash: false, short_name: "CompleteT3MessageTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getCompleteMessageTimeout()"
  • #complete_write_timeout ⇒ Integer
    "The maximum number of seconds that this server waits for a\ncomplete HTTP response to be sent."

    Property Attributes
    • short_name"CompleteWriteTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    36
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 36
    
    property :CompleteWriteTimeout, type: Integer, array: false, hash: false, short_name: "CompleteWriteTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of seconds that this server waits for a\ncomplete HTTP response to be sent."
  • #connect_timeout ⇒ Integer
    "The amount of time that this server should wait to\nestablish an outbound socket connection before timing out."

    Property Attributes
    • short_name"ConnectTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    39
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 39
    
    property :ConnectTimeout, type: Integer, array: false, hash: false, short_name: "ConnectTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The amount of time that this server should wait to\nestablish an outbound socket connection before timing out."
  • #default_protocol ⇒ String
    "The protocol to use for connections when none is specified."

    Property Attributes
    • short_name"DefaultProtocol"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    41
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 41
    
    property :DefaultProtocol, type: String, array: false, hash: false, short_name: "DefaultProtocol", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The protocol to use for connections when none is specified."
  • #default_secure_protocol ⇒ String
    "The protocol to use for secure connections when none is\nspecified."

    Property Attributes
    • short_name"DefaultSecureProtocol"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    44
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 44
    
    property :DefaultSecureProtocol, type: String, array: false, hash: false, short_name: "DefaultSecureProtocol", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The protocol to use for secure connections when none is\nspecified."
  • #dgc_idle_periods_until_timeout ⇒ Integer
    "The number of idle periods allowed before the object is collected."

    Property Attributes
    • short_name"DGCIdlePeriodsUntilTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    46
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 46
    
    property :DGCIdlePeriodsUntilTimeout, type: Integer, array: false, hash: false, short_name: "DGCIdlePeriodsUntilTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of idle periods allowed before the object is collected."
  • #idle_connection_timeout ⇒ Integer
    "The maximum number of seconds that a connection is allowed to be\nidle before it is closed by the server."

    Property Attributes
    • short_name"IdleConnectionTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    51
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 51
    
    property :IdleConnectionTimeout, type: Integer, array: false, hash: false, short_name: "IdleConnectionTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of seconds that a connection is allowed to be\nidle before it is closed by the server."
  • #idle_iiop_connection_timeout ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getIdleConnectionTimeout()"

    Property Attributes
    • short_name"IdleIIOPConnectionTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    54
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 54
    
    property :IdleIIOPConnectionTimeout, type: Integer, array: false, hash: false, short_name: "IdleIIOPConnectionTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getIdleConnectionTimeout()"
  • #idle_periods_until_timeout ⇒ Integer
    "The number of idle periods until peer is considered\nunreachable."

    Property Attributes
    • short_name"IdlePeriodsUntilTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    57
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 57
    
    property :IdlePeriodsUntilTimeout, type: Integer, array: false, hash: false, short_name: "IdlePeriodsUntilTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of idle periods until peer is considered\nunreachable."
  • #iiop ⇒ MintPress::OracleWeblogic::IIOP (Default Value: MintPress::OracleWeblogic::IIOP.new)
    "Returns the kernel's IIOP configuration."

    Property Attributes
    • short_name"IIOP"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::IIOP.new
    
    
    59
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 59
    
    property :IIOP, type: MintPress::OracleWeblogic::IIOP, array: false, hash: false, short_name: "IIOP", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the kernel's IIOP configuration.", default: MintPress::OracleWeblogic::IIOP.new
  • #iiop_tx_mechanism ⇒ String
    "Deprecated.\n8.1.0.0 use IIOPMBean.getTxMechanism()"

    Property Attributes
    • short_name"IIOPTxMechanism"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    62
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 62
    
    property :IIOPTxMechanism, type: String, array: false, hash: false, short_name: "IIOPTxMechanism", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use IIOPMBean.getTxMechanism()"
  • #log ⇒ MintPress::OracleWeblogic::Log (Default Value: MintPress::OracleWeblogic::Log.new)
    "Returns the log settings for this kernel."

    Property Attributes
    • short_name"Log"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::Log.new
    
    
    64
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 64
    
    property :Log, type: MintPress::OracleWeblogic::Log, array: false, hash: false, short_name: "Log", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the log settings for this kernel.", default: MintPress::OracleWeblogic::Log.new
  • #max_com_message_size ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"

    Property Attributes
    • short_name"MaxCOMMessageSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    67
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 67
    
    property :MaxCOMMessageSize, type: Integer, array: false, hash: false, short_name: "MaxCOMMessageSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"
  • #max_http_message_size ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"

    Property Attributes
    • short_name"MaxHTTPMessageSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    70
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 70
    
    property :MaxHTTPMessageSize, type: Integer, array: false, hash: false, short_name: "MaxHTTPMessageSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"
  • #max_iiop_message_size ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"

    Property Attributes
    • short_name"MaxIIOPMessageSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    73
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 73
    
    property :MaxIIOPMessageSize, type: Integer, array: false, hash: false, short_name: "MaxIIOPMessageSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"
  • #max_message_size ⇒ Integer
    "The maximum number of bytes allowed in messages that are\nreceived over all supported protocols, unless overridden by a\nprotocol-specific setting or a custom channel setting."

    Property Attributes
    • short_name"MaxMessageSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    77
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 77
    
    property :MaxMessageSize, type: Integer, array: false, hash: false, short_name: "MaxMessageSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of bytes allowed in messages that are\nreceived over all supported protocols, unless overridden by a\nprotocol-specific setting or a custom channel setting."
  • #max_open_sock_count ⇒ Integer
    "The maximum number of open sockets allowed in server at a given\npoint of time."

    Property Attributes
    • short_name"MaxOpenSockCount"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    80
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 80
    
    property :MaxOpenSockCount, type: Integer, array: false, hash: false, short_name: "MaxOpenSockCount", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of open sockets allowed in server at a given\npoint of time."
  • #max_t3_message_size ⇒ Integer
    "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"

    Property Attributes
    • short_name"MaxT3MessageSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    83
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 83
    
    property :MaxT3MessageSize, type: Integer, array: false, hash: false, short_name: "MaxT3MessageSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n8.1.0.0 use NetworkAccessPointMBean.getMaxMessageSize()"
  • #muxer_class ⇒ String
    "Non-blocking IO is enabled by default on the server side."

    Property Attributes
    • short_name"MuxerClass"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    85
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 85
    
    property :MuxerClass, type: String, array: false, hash: false, short_name: "MuxerClass", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Non-blocking IO is enabled by default on the server side."
  • #period_length ⇒ Integer
    "The time interval in milliseconds of the heartbeat period."

    Property Attributes
    • short_name"PeriodLength"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    87
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 87
    
    property :PeriodLength, type: Integer, array: false, hash: false, short_name: "PeriodLength", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The time interval in milliseconds of the heartbeat period."
  • #print_stack_trace_in_production ⇒ [TrueClass,FalseClass]
    "Specifies whether the server message log includes exception stack trace\nthat are raised in remote systems."

    Property Attributes
    • short_name"PrintStackTraceInProduction"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    90
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 90
    
    property :PrintStackTraceInProduction, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "PrintStackTraceInProduction", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the server message log includes exception stack trace\nthat are raised in remote systems."
  • #socket_readers ⇒ Integer
    "The number of socket reader threads."

    Property Attributes
    • short_name"SocketReaders"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    92
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 92
    
    property :SocketReaders, type: Integer, array: false, hash: false, short_name: "SocketReaders", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of socket reader threads."
  • #ssl ⇒ MintPress::OracleWeblogic::SSL (Default Value: MintPress::OracleWeblogic::SSL.new)

    Property Attributes
    • short_name"SSL"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::SSL.new
    
    
    94
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 94
    
    property :SSL, type: MintPress::OracleWeblogic::SSL, default: MintPress::OracleWeblogic::SSL.new
  • #stdout_format ⇒ String
    "Deprecated."

    Property Attributes
    • short_name"StdoutFormat"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    96
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 96
    
    property :StdoutFormat, type: String, array: false, hash: false, short_name: "StdoutFormat", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated."
  • #stuck_thread_timer_interval ⇒ Integer
    "The number of seconds after which WebLogic Server periodically\nscans threads to see if they have been continually working for the\nconfigured maximum length of time."

    Property Attributes
    • short_name"StuckThreadTimerInterval"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    100
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 100
    
    property :StuckThreadTimerInterval, type: Integer, array: false, hash: false, short_name: "StuckThreadTimerInterval", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of seconds after which WebLogic Server periodically\nscans threads to see if they have been continually working for the\nconfigured maximum length of time."
  • #thread_pool_percent_socket_readers ⇒ Integer
    "The percentage of execute threads from the default queue that\ncan be used as socket readers."

    Property Attributes
    • short_name"ThreadPoolPercentSocketReaders"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    103
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 103
    
    property :ThreadPoolPercentSocketReaders, type: Integer, array: false, hash: false, short_name: "ThreadPoolPercentSocketReaders", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The percentage of execute threads from the default queue that\ncan be used as socket readers."
  • #use81_style_execute_queues ⇒ [TrueClass,FalseClass]
    "Backward compatibility mode to switch to 8.1 execute queues\ninstead of WorkManagers."

    Property Attributes
    • short_name"Use81StyleExecuteQueues"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    106
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 106
    
    property :Use81StyleExecuteQueues, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "Use81StyleExecuteQueues", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Backward compatibility mode to switch to 8.1 execute queues\ninstead of WorkManagers."
  • #add_work_manager_threads_by_cpu_count ⇒ [TrueClass,FalseClass]
    "Enables increased efficiency of the self-tuning thread pool by aligning it with the Exalogic\nprocessor architecture threading capabilities."

    Property Attributes
    • short_name"AddWorkManagerThreadsByCpuCount"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    109
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 109
    
    property :AddWorkManagerThreadsByCpuCount, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "AddWorkManagerThreadsByCpuCount", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Enables increased efficiency of the self-tuning thread pool by aligning it with the Exalogic\nprocessor architecture threading capabilities."
  • #allow_shrinking_priority_request_queue ⇒ [TrueClass,FalseClass]
    "Specifies whether self-tuning should allow shrinking of its priority based\nqueue for pending requests after it has grown in size due to busy workload,\nand whether it should try to purge work requests that have already been picked\nup for processing due to minimum threads constraints before growing the queue."

    Property Attributes
    • short_name"AllowShrinkingPriorityRequestQueue"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    114
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 114
    
    property :AllowShrinkingPriorityRequestQueue, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "AllowShrinkingPriorityRequestQueue", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether self-tuning should allow shrinking of its priority based\nqueue for pending requests after it has grown in size due to busy workload,\nand whether it should try to purge work requests that have already been picked\nup for processing due to minimum threads constraints before growing the queue."
  • #gathered_writes_enabled ⇒ [TrueClass,FalseClass]
    "Enables gathered writes over NIO socket channels."

    Property Attributes
    • short_name"GatheredWritesEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    116
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 116
    
    property :GatheredWritesEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "GatheredWritesEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Enables gathered writes over NIO socket channels."
  • #instrument_stack_trace_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether the server returns stack traces for RMI calls\nthat generate exceptions."

    Property Attributes
    • short_name"InstrumentStackTraceEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    119
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 119
    
    property :InstrumentStackTraceEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "InstrumentStackTraceEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the server returns stack traces for RMI calls\nthat generate exceptions."
  • #log_remote_exceptions_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether the server message log includes exceptions\nthat are raised in remote systems."

    Property Attributes
    • short_name"LogRemoteExceptionsEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    122
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 122
    
    property :LogRemoteExceptionsEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "LogRemoteExceptionsEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the server message log includes exceptions\nthat are raised in remote systems."
  • #native_io_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether native I/O is enabled for the server."

    Property Attributes
    • short_name"NativeIOEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    124
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 124
    
    property :NativeIOEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "NativeIOEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether native I/O is enabled for the server."
  • #outbound_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether new server-to-server connections may consider\nthe default server channel when initiating a connection."

    Property Attributes
    • short_name"OutboundEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    127
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 127
    
    property :OutboundEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "OutboundEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether new server-to-server connections may consider\nthe default server channel when initiating a connection."
  • #outbound_private_key_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether the SSL identity specified by\ngetSSLMBean#ServerPrivateKeyAlias for this server\nshould be used for outbound SSL connections on the default\nserver channel."

    Property Attributes
    • short_name"OutboundPrivateKeyEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    132
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 132
    
    property :OutboundPrivateKeyEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "OutboundPrivateKeyEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the SSL identity specified by\ngetSSLMBean#ServerPrivateKeyAlias for this server\nshould be used for outbound SSL connections on the default\nserver channel."
  • #reverse_dns_allowed ⇒ [TrueClass,FalseClass]
    "Specifies whether the kernel is allowed to perform reverse DNS\nlookups."

    Property Attributes
    • short_name"ReverseDNSAllowed"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    135
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 135
    
    property :ReverseDNSAllowed, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ReverseDNSAllowed", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the kernel is allowed to perform reverse DNS\nlookups."
  • #scattered_reads_enabled ⇒ [TrueClass,FalseClass]
    "Enables scattered reads over NIO socket channels."

    Property Attributes
    • short_name"ScatteredReadsEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    137
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 137
    
    property :ScatteredReadsEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ScatteredReadsEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Enables scattered reads over NIO socket channels."
  • #socket_buffer_size_as_chunk_size ⇒ [TrueClass,FalseClass]
    "Specifies whether the server's buffer size for sending or receiving data\nthrough a raw socket should be set to 4KB."

    Property Attributes
    • short_name"SocketBufferSizeAsChunkSize"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    140
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 140
    
    property :SocketBufferSizeAsChunkSize, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "SocketBufferSizeAsChunkSize", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the server's buffer size for sending or receiving data\nthrough a raw socket should be set to 4KB."
  • #use_concurrent_queue_for_request_manager ⇒ [TrueClass,FalseClass]
    "Reduces lock contention by using concurrent buffer queue to park\nincoming requests."

    Property Attributes
    • short_name"UseConcurrentQueueForRequestManager"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    143
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 143
    
    property :UseConcurrentQueueForRequestManager, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "UseConcurrentQueueForRequestManager", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Reduces lock contention by using concurrent buffer queue to park\nincoming requests."
  • #use_detailed_thread_name ⇒ [TrueClass,FalseClass]
    "Specifies whether to includes detailed information in self-tuning thread pool thread names."

    Property Attributes
    • short_name"UseDetailedThreadName"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    145
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 145
    
    property :UseDetailedThreadName, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "UseDetailedThreadName", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether to includes detailed information in self-tuning thread pool thread names."
  • #use_enhanced_increment_advisor ⇒ [TrueClass,FalseClass]
    "Specifies whether self-tuning should use the enhanced IncrementAdvisor\nimplementation that uses a different algorithm to adjust the size of the\nself-tuning thread pool."

    Property Attributes
    • short_name"UseEnhancedIncrementAdvisor"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    149
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 149
    
    property :UseEnhancedIncrementAdvisor, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "UseEnhancedIncrementAdvisor", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether self-tuning should use the enhanced IncrementAdvisor\nimplementation that uses a different algorithm to adjust the size of the\nself-tuning thread pool."
  • #use_enhanced_priority_queue_for_request_manager ⇒ [TrueClass,FalseClass]
    "Reduces lock contention by using the enhanced ConcurrentCalendarQueue\nas the priority based queue for pending requests that are waiting for a\nthread."

    Property Attributes
    • short_name"UseEnhancedPriorityQueueForRequestManager"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    153
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 153
    
    property :UseEnhancedPriorityQueueForRequestManager, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "UseEnhancedPriorityQueueForRequestManager", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Reduces lock contention by using the enhanced ConcurrentCalendarQueue\nas the priority based queue for pending requests that are waiting for a\nthread."
  • #accept_backlog ⇒ Integer
    "The number of backlogged, new TCP connection requests that\nshould be allowed for this server's regular and SSL ports."

    Property Attributes
    • short_name"AcceptBacklog"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    156
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 156
    
    property :AcceptBacklog, type: Integer, array: false, hash: false, short_name: "AcceptBacklog", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of backlogged, new TCP connection requests that\nshould be allowed for this server's regular and SSL ports."
  • #administration_port ⇒ Integer
    "The secure administration port for the server."

    Property Attributes
    • short_name"AdministrationPort"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    158
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 158
    
    property :AdministrationPort, type: Integer, array: false, hash: false, short_name: "AdministrationPort", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The secure administration port for the server."
  • #admin_reconnect_interval_seconds ⇒ Integer
    "The number of seconds between reconnection attempts to the\nadmin server."

    Property Attributes
    • short_name"AdminReconnectIntervalSeconds"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    161
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 161
    
    property :AdminReconnectIntervalSeconds, type: Integer, array: false, hash: false, short_name: "AdminReconnectIntervalSeconds", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of seconds between reconnection attempts to the\nadmin server."
  • #auto_kill_if_failed ⇒ [TrueClass,FalseClass]
    "Deprecated.\nsince 12.1.3.0 Use OverloadProtectionMBean instead"

    Property Attributes
    • short_name"AutoKillIfFailed"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    164
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 164
    
    property :AutoKillIfFailed, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "AutoKillIfFailed", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\nsince 12.1.3.0 Use OverloadProtectionMBean instead"
  • #auto_restart ⇒ [TrueClass,FalseClass]
    "Specifies whether the Node Manager can automatically restart\nthis server if it crashes or otherwise goes down\nunexpectedly."

    Property Attributes
    • short_name"AutoRestart"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    168
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 168
    
    property :AutoRestart, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "AutoRestart", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the Node Manager can automatically restart\nthis server if it crashes or otherwise goes down\nunexpectedly."
  • #candidate_machines ⇒ Hash of ⇒ [MintPress::OracleWeblogic::Machine,MintPress::OracleWeblogic::UnixMachine]
    "Limits the list of candidate machines that the cluster\nspecifies."

    Property Attributes
    • short_name"CandidateMachines"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    171
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 171
    
    property :CandidateMachines, type: [MintPress::OracleWeblogic::Machine,MintPress::OracleWeblogic::UnixMachine], array: false, hash: true, short_name: "CandidateMachines", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Limits the list of candidate machines that the cluster\nspecifies."
  • #cluster ⇒ MintPress::OracleWeblogic::Cluster

    Property Attributes
    • short_name"Cluster"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    174
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 174
    
    property :Cluster, type: MintPress::OracleWeblogic::Cluster
  • #cluster_weight ⇒ Integer
    "The proportion of the load that this server will bear, relative\nto other servers in a cluster."

    Property Attributes
    • short_name"ClusterWeight"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    177
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 177
    
    property :ClusterWeight, type: Integer, array: false, hash: false, short_name: "ClusterWeight", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The proportion of the load that this server will bear, relative\nto other servers in a cluster."
  • #coherence_cluster_system_resource ⇒ MintPress::OracleWeblogic::CoherenceClusterSystemResource
    "The system-level Coherence cluster resource associated with this server."

    Property Attributes
    • short_name"CoherenceClusterSystemResource"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    179
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 179
    
    property :CoherenceClusterSystemResource, type: MintPress::OracleWeblogic::CoherenceClusterSystemResource, array: false, hash: false, short_name: "CoherenceClusterSystemResource", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The system-level Coherence cluster resource associated with this server."
  • #coherence_member_config ⇒ MintPress::OracleWeblogic::CoherenceMemberConfig (Default Value: MintPress::OracleWeblogic::CoherenceMemberConfig.new)
    "Returns the Coherence Operational Config overrides associated with\nthis Server."

    Property Attributes
    • short_name"CoherenceMemberConfig"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::CoherenceMemberConfig.new
    
    
    182
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 182
    
    property :CoherenceMemberConfig, type: MintPress::OracleWeblogic::CoherenceMemberConfig, array: false, hash: false, short_name: "CoherenceMemberConfig", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the Coherence Operational Config overrides associated with\nthis Server.", default: MintPress::OracleWeblogic::CoherenceMemberConfig.new
  • #com ⇒ MintPress::OracleWeblogic::COM (Default Value: MintPress::OracleWeblogic::COM.new)
    "Deprecated.\n12.2.1.2.0"

    Property Attributes
    • short_name"COM"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::COM.new
    
    
    185
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 185
    
    property :COM, type: MintPress::OracleWeblogic::COM, array: false, hash: false, short_name: "COM", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.2.1.2.0", default: MintPress::OracleWeblogic::COM.new
  • #custom_identity_key_store_file_name ⇒ String
    "The source of the identity keystore."

    Property Attributes
    • short_name"CustomIdentityKeyStoreFileName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    187
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 187
    
    property :CustomIdentityKeyStoreFileName, type: String, array: false, hash: false, short_name: "CustomIdentityKeyStoreFileName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The source of the identity keystore."
  • #custom_identity_key_store_pass_phrase ⇒ [Mint::Secret]
    "The encrypted custom identity keystore's passphrase."

    Property Attributes
    • short_name"CustomIdentityKeyStorePassPhrase"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    189
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 189
    
    property :CustomIdentityKeyStorePassPhrase, type: [Mint::Secret], array: false, hash: false, short_name: "CustomIdentityKeyStorePassPhrase", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The encrypted custom identity keystore's passphrase."
  • #custom_identity_key_store_type ⇒ String
    "The type of the keystore."

    Property Attributes
    • short_name"CustomIdentityKeyStoreType"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    191
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 191
    
    property :CustomIdentityKeyStoreType, type: String, array: false, hash: false, short_name: "CustomIdentityKeyStoreType", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The type of the keystore."
  • #custom_trust_key_store_file_name ⇒ String
    "The source of the custom trust keystore."

    Property Attributes
    • short_name"CustomTrustKeyStoreFileName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    193
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 193
    
    property :CustomTrustKeyStoreFileName, type: String, array: false, hash: false, short_name: "CustomTrustKeyStoreFileName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The source of the custom trust keystore."
  • #custom_trust_key_store_pass_phrase ⇒ [Mint::Secret]
    "The custom trust keystore's passphrase."

    Property Attributes
    • short_name"CustomTrustKeyStorePassPhrase"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    195
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 195
    
    property :CustomTrustKeyStorePassPhrase, type: [Mint::Secret], array: false, hash: false, short_name: "CustomTrustKeyStorePassPhrase", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The custom trust keystore's passphrase."
  • #custom_trust_key_store_type ⇒ String
    "The type of the keystore."

    Property Attributes
    • short_name"CustomTrustKeyStoreType"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    197
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 197
    
    property :CustomTrustKeyStoreType, type: String, array: false, hash: false, short_name: "CustomTrustKeyStoreType", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The type of the keystore."
  • #data_source ⇒ MintPress::OracleWeblogic::DataSource (Default Value: MintPress::OracleWeblogic::DataSource.new)
    "The datasource configuration for the server."

    Property Attributes
    • short_name"DataSource"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::DataSource.new
    
    
    199
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 199
    
    property :DataSource, type: MintPress::OracleWeblogic::DataSource, array: false, hash: false, short_name: "DataSource", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The datasource configuration for the server.", default: MintPress::OracleWeblogic::DataSource.new
  • #default_file_store ⇒ MintPress::OracleWeblogic::DefaultFileStore (Default Value: MintPress::OracleWeblogic::DefaultFileStore.new)
    "Controls the configuration of the default persistent store on\nthis server."

    Property Attributes
    • short_name"DefaultFileStore"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::DefaultFileStore.new
    
    
    202
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 202
    
    property :DefaultFileStore, type: MintPress::OracleWeblogic::DefaultFileStore, array: false, hash: false, short_name: "DefaultFileStore", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Controls the configuration of the default persistent store on\nthis server.", default: MintPress::OracleWeblogic::DefaultFileStore.new
  • #default_iiop_password ⇒ [Mint::Secret]
    "The password for the default IIOP user."

    Property Attributes
    • short_name"DefaultIIOPPassword"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    204
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 204
    
    property :DefaultIIOPPassword, type: [Mint::Secret], array: false, hash: false, short_name: "DefaultIIOPPassword", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The password for the default IIOP user."
  • #default_iiop_user ⇒ String
    "The user name of the default IIOP user."

    Property Attributes
    • short_name"DefaultIIOPUser"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    206
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 206
    
    property :DefaultIIOPUser, type: String, array: false, hash: false, short_name: "DefaultIIOPUser", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The user name of the default IIOP user."
  • #default_tgiop_password ⇒ [Mint::Secret]
    "The password for the default user associated with the\nTuxedo GIOP (TGIOP) protocol."

    Property Attributes
    • short_name"DefaultTGIOPPassword"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    209
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 209
    
    property :DefaultTGIOPPassword, type: [Mint::Secret], array: false, hash: false, short_name: "DefaultTGIOPPassword", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The password for the default user associated with the\nTuxedo GIOP (TGIOP) protocol."
  • #default_tgiop_user ⇒ String
    "Deprecated.\n12.2.1.3.0"

    Property Attributes
    • short_name"DefaultTGIOPUser"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    212
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 212
    
    property :DefaultTGIOPUser, type: String, array: false, hash: false, short_name: "DefaultTGIOPUser", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.2.1.3.0"
  • #external_dns_name ⇒ String
    "The external IP address or DNS name for this server."

    Property Attributes
    • short_name"ExternalDNSName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    214
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 214
    
    property :ExternalDNSName, type: String, array: false, hash: false, short_name: "ExternalDNSName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The external IP address or DNS name for this server."
  • #extra_ejbc_options ⇒ String
    "The options passed to the EJB compiler during server-side\ngeneration."

    Property Attributes
    • short_name"ExtraEjbcOptions"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    217
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 217
    
    property :ExtraEjbcOptions, type: String, array: false, hash: false, short_name: "ExtraEjbcOptions", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The options passed to the EJB compiler during server-side\ngeneration."
  • #extra_rmic_options ⇒ String
    "The options passed to the RMIC compiler during server-side\ngeneration."

    Property Attributes
    • short_name"ExtraRmicOptions"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    220
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 220
    
    property :ExtraRmicOptions, type: String, array: false, hash: false, short_name: "ExtraRmicOptions", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The options passed to the RMIC compiler during server-side\ngeneration."
  • #federation_services ⇒ MintPress::OracleWeblogic::FederationServices (Default Value: MintPress::OracleWeblogic::FederationServices.new)
    "Gets the Federation Services MBean"

    Property Attributes
    • short_name"FederationServices"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::FederationServices.new
    
    
    222
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 222
    
    property :FederationServices, type: MintPress::OracleWeblogic::FederationServices, array: false, hash: false, short_name: "FederationServices", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Gets the Federation Services MBean", default: MintPress::OracleWeblogic::FederationServices.new
  • #graceful_shutdown_timeout ⇒ Integer
    "Number of seconds a graceful shutdown operation waits before\nforcing a shut down."

    Property Attributes
    • short_name"GracefulShutdownTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    225
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 225
    
    property :GracefulShutdownTimeout, type: Integer, array: false, hash: false, short_name: "GracefulShutdownTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Number of seconds a graceful shutdown operation waits before\nforcing a shut down."
  • #health_check_interval_seconds ⇒ Integer
    "The number of seconds that defines the frequency of this\nserver's self-health monitoring."

    Property Attributes
    • short_name"HealthCheckIntervalSeconds"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    228
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 228
    
    property :HealthCheckIntervalSeconds, type: Integer, array: false, hash: false, short_name: "HealthCheckIntervalSeconds", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of seconds that defines the frequency of this\nserver's self-health monitoring."
  • #interface_address ⇒ String
    "The IP address of the NIC that this server should use for\nmulticast traffic."

    Property Attributes
    • short_name"InterfaceAddress"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    234
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 234
    
    property :InterfaceAddress, type: String, array: false, hash: false, short_name: "InterfaceAddress", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The IP address of the NIC that this server should use for\nmulticast traffic."
  • #java_compiler ⇒ String
    "The Java compiler to use for all applications hosted on this\nserver that need to compile Java code."

    Property Attributes
    • short_name"JavaCompiler"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    237
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 237
    
    property :JavaCompiler, type: String, array: false, hash: false, short_name: "JavaCompiler", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The Java compiler to use for all applications hosted on this\nserver that need to compile Java code."
  • #java_compiler_post_class_path ⇒ String
    "The options to append to the Java compiler classpath when\ncompiling Java code."

    Property Attributes
    • short_name"JavaCompilerPostClassPath"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    240
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 240
    
    property :JavaCompilerPostClassPath, type: String, array: false, hash: false, short_name: "JavaCompilerPostClassPath", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The options to append to the Java compiler classpath when\ncompiling Java code."
  • #java_compiler_pre_class_path ⇒ String
    "The options to prepend to the Java compiler classpath when\ncompiling Java code."

    Property Attributes
    • short_name"JavaCompilerPreClassPath"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    243
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 243
    
    property :JavaCompilerPreClassPath, type: String, array: false, hash: false, short_name: "JavaCompilerPreClassPath", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The options to prepend to the Java compiler classpath when\ncompiling Java code."
  • #java_standard_trust_key_store_pass_phrase ⇒ [Mint::Secret]
    "The password for the Java Standard Trust keystore."

    Property Attributes
    • short_name"JavaStandardTrustKeyStorePassPhrase"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    245
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 245
    
    property :JavaStandardTrustKeyStorePassPhrase, type: [Mint::Secret], array: false, hash: false, short_name: "JavaStandardTrustKeyStorePassPhrase", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The password for the Java Standard Trust keystore."
  • #jdbcllr_table_name ⇒ String
    "The table name for this server's Logging Last Resource (LLR)\ndatabase table(s)."

    Property Attributes
    • short_name"JDBCLLRTableName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    248
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 248
    
    property :JDBCLLRTableName, type: String, array: false, hash: false, short_name: "JDBCLLRTableName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The table name for this server's Logging Last Resource (LLR)\ndatabase table(s)."
  • #jdbc_login_timeout_seconds ⇒ Integer
    "The JDBC Login Timeout value."

    Property Attributes
    • short_name"JDBCLoginTimeoutSeconds"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    250
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 250
    
    property :JDBCLoginTimeoutSeconds, type: Integer, array: false, hash: false, short_name: "JDBCLoginTimeoutSeconds", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The JDBC Login Timeout value."
  • #jta_migratable_target ⇒ MintPress::OracleWeblogic::JTAMigratableTarget (Default Value: MintPress::OracleWeblogic::JTAMigratableTarget.new)
    "Returns the JTAMigratableTargetMBean that is used to deploy the\nJTA Recovery Service to (is the server's cluster is not null)."

    Property Attributes
    • short_name"JTAMigratableTarget"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::JTAMigratableTarget.new
    
    
    253
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 253
    
    property :JTAMigratableTarget, type: MintPress::OracleWeblogic::JTAMigratableTarget, array: false, hash: false, short_name: "JTAMigratableTarget", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the JTAMigratableTargetMBean that is used to deploy the\nJTA Recovery Service to (is the server's cluster is not null).", default: MintPress::OracleWeblogic::JTAMigratableTarget.new
  • #key_stores ⇒ String
    "Which configuration rules should be used for finding the\nserver's identity and trust keystores?"

    Property Attributes
    • short_name"KeyStores"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    256
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 256
    
    property :KeyStores, type: String, array: false, hash: false, short_name: "KeyStores", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Which configuration rules should be used for finding the\nserver's identity and trust keystores?"
  • #listen_address ⇒ String
    "The IP address or DNS name this server uses to listen for\nincoming connections."

    Property Attributes
    • short_name"ListenAddress"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    259
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 259
    
    property :ListenAddress, type: String, array: false, hash: false, short_name: "ListenAddress", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The IP address or DNS name this server uses to listen for\nincoming connections."
  • #listen_delay_secs ⇒ Integer
    "Deprecated."

    Property Attributes
    • short_name"ListenDelaySecs"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    261
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 261
    
    property :ListenDelaySecs, type: Integer, array: false, hash: false, short_name: "ListenDelaySecs", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated."
  • #listeners_bind_early ⇒ [TrueClass,FalseClass]
    "Determines whether the server should bind server sockets\nearly."

    Property Attributes
    • short_name"ListenersBindEarly"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    264
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 264
    
    property :ListenersBindEarly, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ListenersBindEarly", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Determines whether the server should bind server sockets\nearly."
  • #listen_port ⇒ Integer
    "The default TCP port that this server uses to listen for regular\n(non-SSL) incoming connections."

    Property Attributes
    • short_name"ListenPort"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    267
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 267
    
    property :ListenPort, type: Integer, array: false, hash: false, short_name: "ListenPort", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The default TCP port that this server uses to listen for regular\n(non-SSL) incoming connections."
  • #listen_thread_start_delay_secs ⇒ Integer
    "Returns the maximum time that the server will wait for server\nsockets to bind before starting a listen thread."

    Property Attributes
    • short_name"ListenThreadStartDelaySecs"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    270
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 270
    
    property :ListenThreadStartDelaySecs, type: Integer, array: false, hash: false, short_name: "ListenThreadStartDelaySecs", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the maximum time that the server will wait for server\nsockets to bind before starting a listen thread."
  • #login_timeout_millis ⇒ Integer
    "The login timeout for this server's default regular (non-SSL)\nlisten port."

    Property Attributes
    • short_name"LoginTimeoutMillis"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    273
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 273
    
    property :LoginTimeoutMillis, type: Integer, array: false, hash: false, short_name: "LoginTimeoutMillis", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The login timeout for this server's default regular (non-SSL)\nlisten port."
  • #low_memory_gc_threshold ⇒ Integer
    "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"

    Property Attributes
    • short_name"LowMemoryGCThreshold"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    276
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 276
    
    property :LowMemoryGCThreshold, type: Integer, array: false, hash: false, short_name: "LowMemoryGCThreshold", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"
  • #low_memory_granularity_level ⇒ Integer
    "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"

    Property Attributes
    • short_name"LowMemoryGranularityLevel"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    279
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 279
    
    property :LowMemoryGranularityLevel, type: Integer, array: false, hash: false, short_name: "LowMemoryGranularityLevel", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"
  • #low_memory_sample_size ⇒ Integer
    "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"

    Property Attributes
    • short_name"LowMemorySampleSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    282
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 282
    
    property :LowMemorySampleSize, type: Integer, array: false, hash: false, short_name: "LowMemorySampleSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"
  • #low_memory_time_interval ⇒ Integer
    "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"

    Property Attributes
    • short_name"LowMemoryTimeInterval"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    285
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 285
    
    property :LowMemoryTimeInterval, type: Integer, array: false, hash: false, short_name: "LowMemoryTimeInterval", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.1.1.0.0 not used anywhere in runtime (core) code"
  • #machine ⇒ MintPress::OracleWeblogic::Machine

    Property Attributes
    • short_name"Machine"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    288
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 288
    
    property :Machine, type: MintPress::OracleWeblogic::Machine
  • #network_access_points ⇒ Hash of ⇒ MintPress::OracleWeblogic::NetworkAccessPoint
    "Network access points, or \"NAPs\", define additional ports and\naddresses that this server listens on."

    Property Attributes
    • short_name"NetworkAccessPoints"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatortrue
    • read_onlyfalse
    
    
    291
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 291
    
    property :NetworkAccessPoints, type: MintPress::OracleWeblogic::NetworkAccessPoint, array: false, hash: true, short_name: "NetworkAccessPoints", has_setter: false, has_getter: true, has_lister: false, has_creator: true, read_only: false, description: "Network access points, or \"NAPs\", define additional ports and\naddresses that this server listens on."
  • #nm_socket_create_timeout_in_millis ⇒ Integer
    "Deprecated.\n12.2.1.2.0"

    Property Attributes
    • short_name"NMSocketCreateTimeoutInMillis"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    294
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 294
    
    property :NMSocketCreateTimeoutInMillis, type: Integer, array: false, hash: false, short_name: "NMSocketCreateTimeoutInMillis", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.2.1.2.0"
  • #overload_protection ⇒ MintPress::OracleWeblogic::OverloadProtection (Default Value: MintPress::OracleWeblogic::OverloadProtection.new)
    "get attributes related to server overload protection"

    Property Attributes
    • short_name"OverloadProtection"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::OverloadProtection.new
    
    
    296
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 296
    
    property :OverloadProtection, type: MintPress::OracleWeblogic::OverloadProtection, array: false, hash: false, short_name: "OverloadProtection", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "get attributes related to server overload protection", default: MintPress::OracleWeblogic::OverloadProtection.new
  • #preferred_secondary_group ⇒ String
    "Defines secondary clustered instances considered for hosting\nreplicas of the primary HTTP session states created on the\nserver."

    Property Attributes
    • short_name"PreferredSecondaryGroup"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    300
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 300
    
    property :PreferredSecondaryGroup, type: String, array: false, hash: false, short_name: "PreferredSecondaryGroup", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Defines secondary clustered instances considered for hosting\nreplicas of the primary HTTP session states created on the\nserver."
  • #reliable_delivery_policy ⇒ MintPress::OracleWeblogic::WSReliableDeliveryPolicy
    "The reliable delivery policy for web services."

    Property Attributes
    • short_name"ReliableDeliveryPolicy"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    302
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 302
    
    property :ReliableDeliveryPolicy, type: MintPress::OracleWeblogic::WSReliableDeliveryPolicy, array: false, hash: false, short_name: "ReliableDeliveryPolicy", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The reliable delivery policy for web services."
  • #replication_group ⇒ String
    "Defines preferred clustered instances considered for hosting\nreplicas of the primary HTTP session states created on the\nserver."

    Property Attributes
    • short_name"ReplicationGroup"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    306
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 306
    
    property :ReplicationGroup, type: String, array: false, hash: false, short_name: "ReplicationGroup", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Defines preferred clustered instances considered for hosting\nreplicas of the primary HTTP session states created on the\nserver."
  • #replication_ports ⇒ String
    "When WLS is running on Exalogic machines, cluster replication traffic could\ngo over multiple replication channels."

    Property Attributes
    • short_name"ReplicationPorts"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    309
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 309
    
    property :ReplicationPorts, type: String, array: false, hash: false, short_name: "ReplicationPorts", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "When WLS is running on Exalogic machines, cluster replication traffic could\ngo over multiple replication channels."
  • #resolve_dns_name ⇒ [TrueClass,FalseClass]
    "Resolve the listen address to use for all T3 communication"

    Property Attributes
    • short_name"ResolveDNSName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    311
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 311
    
    property :ResolveDNSName, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ResolveDNSName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Resolve the listen address to use for all T3 communication"
  • #restart_delay_seconds ⇒ Integer
    "The number of seconds the Node Manager should wait before\nrestarting this server."

    Property Attributes
    • short_name"RestartDelaySeconds"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    314
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 314
    
    property :RestartDelaySeconds, type: Integer, array: false, hash: false, short_name: "RestartDelaySeconds", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of seconds the Node Manager should wait before\nrestarting this server."
  • #restart_interval_seconds ⇒ Integer
    "The number of seconds during which this server can be restarted,\nup to the number of times specified in RestartMax."

    Property Attributes
    • short_name"RestartIntervalSeconds"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    317
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 317
    
    property :RestartIntervalSeconds, type: Integer, array: false, hash: false, short_name: "RestartIntervalSeconds", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of seconds during which this server can be restarted,\nup to the number of times specified in RestartMax."
  • #restart_max ⇒ Integer
    "The number of times that the Node Manager can restart this\nserver within the interval specified in RestartIntervalSeconds."

    Property Attributes
    • short_name"RestartMax"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    320
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 320
    
    property :RestartMax, type: Integer, array: false, hash: false, short_name: "RestartMax", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The number of times that the Node Manager can restart this\nserver within the interval specified in RestartIntervalSeconds."
  • #server_debug ⇒ MintPress::OracleWeblogic::ServerDebug (Default Value: MintPress::OracleWeblogic::ServerDebug.new)
    "The debug setting for this server."

    Property Attributes
    • short_name"ServerDebug"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::ServerDebug.new
    
    
    322
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 322
    
    property :ServerDebug, type: MintPress::OracleWeblogic::ServerDebug, array: false, hash: false, short_name: "ServerDebug", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The debug setting for this server.", default: MintPress::OracleWeblogic::ServerDebug.new
  • #server_diagnostic_config ⇒ MintPress::OracleWeblogic::WLDFServerDiagnostic (Default Value: MintPress::OracleWeblogic::WLDFServerDiagnostic.new)
    "The diagnostic configuration for the servers"

    Property Attributes
    • short_name"ServerDiagnosticConfig"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::WLDFServerDiagnostic.new
    
    
    324
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 324
    
    property :ServerDiagnosticConfig, type: MintPress::OracleWeblogic::WLDFServerDiagnostic, array: false, hash: false, short_name: "ServerDiagnosticConfig", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The diagnostic configuration for the servers", default: MintPress::OracleWeblogic::WLDFServerDiagnostic.new
  • #server_life_cycle_timeout_val ⇒ Integer
    "Number of seconds a force shutdown operation waits before timing\nout and killing itself."

    Property Attributes
    • short_name"ServerLifeCycleTimeoutVal"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    327
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 327
    
    property :ServerLifeCycleTimeoutVal, type: Integer, array: false, hash: false, short_name: "ServerLifeCycleTimeoutVal", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Number of seconds a force shutdown operation waits before timing\nout and killing itself."
  • #server_start ⇒ MintPress::OracleWeblogic::ServerStart (Default Value: MintPress::OracleWeblogic::ServerStart.new)
    "Returns the ServerStartMBean that can be used to start up this\nserver remotely."

    Property Attributes
    • short_name"ServerStart"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::ServerStart.new
    
    
    330
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 330
    
    property :ServerStart, type: MintPress::OracleWeblogic::ServerStart, array: false, hash: false, short_name: "ServerStart", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the ServerStartMBean that can be used to start up this\nserver remotely.", default: MintPress::OracleWeblogic::ServerStart.new
  • #single_sign_on_services ⇒ MintPress::OracleWeblogic::SingleSignOnServices (Default Value: MintPress::OracleWeblogic::SingleSignOnServices.new)
    "Gets the Single Sign-On Services MBean"

    Property Attributes
    • short_name"SingleSignOnServices"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::SingleSignOnServices.new
    
    
    332
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 332
    
    property :SingleSignOnServices, type: MintPress::OracleWeblogic::SingleSignOnServices, array: false, hash: false, short_name: "SingleSignOnServices", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Gets the Single Sign-On Services MBean", default: MintPress::OracleWeblogic::SingleSignOnServices.new
  • #staging_mode ⇒ String
    "The mode that specifies whether an application's files are\ncopied from a source on the Administration Server to the Managed\nServer's staging area during application preparation."

    Property Attributes
    • short_name"StagingMode"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    339
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 339
    
    property :StagingMode, type: String, array: false, hash: false, short_name: "StagingMode", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The mode that specifies whether an application's files are\ncopied from a source on the Administration Server to the Managed\nServer's staging area during application preparation."
  • #startup_mode ⇒ String
    "The state in which this server should be started."

    Property Attributes
    • short_name"StartupMode"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    341
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 341
    
    property :StartupMode, type: String, array: false, hash: false, short_name: "StartupMode", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The state in which this server should be started."
  • #startup_timeout ⇒ Integer
    "Timeout value for server start and resume operations."

    Property Attributes
    • short_name"StartupTimeout"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    343
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 343
    
    property :StartupTimeout, type: Integer, array: false, hash: false, short_name: "StartupTimeout", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Timeout value for server start and resume operations."
  • #transaction_log_file_prefix ⇒ String
    "The path prefix for the server's JTA transaction log files."

    Property Attributes
    • short_name"TransactionLogFilePrefix"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    345
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 345
    
    property :TransactionLogFilePrefix, type: String, array: false, hash: false, short_name: "TransactionLogFilePrefix", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The path prefix for the server's JTA transaction log files."
  • #transaction_log_file_write_policy ⇒ String
    "The policy that determines how transaction log file entries are\nwritten to disk."

    Property Attributes
    • short_name"TransactionLogFileWritePolicy"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    348
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 348
    
    property :TransactionLogFileWritePolicy, type: String, array: false, hash: false, short_name: "TransactionLogFileWritePolicy", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The policy that determines how transaction log file entries are\nwritten to disk."
  • #transaction_log_jdbc_store ⇒ MintPress::OracleWeblogic::TransactionLogJDBCStore (Default Value: MintPress::OracleWeblogic::TransactionLogJDBCStore.new)
    "The JDBC TLOG store used for transaction logging."

    Property Attributes
    • short_name"TransactionLogJDBCStore"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::TransactionLogJDBCStore.new
    
    
    350
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 350
    
    property :TransactionLogJDBCStore, type: MintPress::OracleWeblogic::TransactionLogJDBCStore, array: false, hash: false, short_name: "TransactionLogJDBCStore", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The JDBC TLOG store used for transaction logging.", default: MintPress::OracleWeblogic::TransactionLogJDBCStore.new
  • #tunneling_client_ping_secs ⇒ Integer
    "The interval (in seconds) at which to ping a tunneled client to\nsee if it is still alive."

    Property Attributes
    • short_name"TunnelingClientPingSecs"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    353
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 353
    
    property :TunnelingClientPingSecs, type: Integer, array: false, hash: false, short_name: "TunnelingClientPingSecs", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The interval (in seconds) at which to ping a tunneled client to\nsee if it is still alive."
  • #tunneling_client_timeout_secs ⇒ Integer
    "The amount of time (in seconds) after which a missing tunneled\nclient is considered dead."

    Property Attributes
    • short_name"TunnelingClientTimeoutSecs"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    356
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 356
    
    property :TunnelingClientTimeoutSecs, type: Integer, array: false, hash: false, short_name: "TunnelingClientTimeoutSecs", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The amount of time (in seconds) after which a missing tunneled\nclient is considered dead."
  • #upload_directory_name ⇒ String
    "The directory path on the Administration Server where all\nuploaded applications are placed."

    Property Attributes
    • short_name"UploadDirectoryName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    359
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 359
    
    property :UploadDirectoryName, type: String, array: false, hash: false, short_name: "UploadDirectoryName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The directory path on the Administration Server where all\nuploaded applications are placed."
  • #verbose_ejb_deployment_enabled ⇒ String
    "Deprecated.\nDeprecated as of 10.3.3.0 in favor of\nServerDebugMBean.getDebugEjbDeployment()"

    Property Attributes
    • short_name"VerboseEJBDeploymentEnabled"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    363
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 363
    
    property :VerboseEJBDeploymentEnabled, type: String, array: false, hash: false, short_name: "VerboseEJBDeploymentEnabled", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\nDeprecated as of 10.3.3.0 in favor of\nServerDebugMBean.getDebugEjbDeployment()"
  • #virtual_machine_name ⇒ String
    "Deprecated.\n12.1.3.0"

    Property Attributes
    • short_name"VirtualMachineName"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    366
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 366
    
    property :VirtualMachineName, type: String, array: false, hash: false, short_name: "VirtualMachineName", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.1.3.0"
  • #web_server ⇒ MintPress::OracleWeblogic::WebServer (Default Value: MintPress::OracleWeblogic::WebServer.new)
    "Returns the web server for this server."

    Property Attributes
    • short_name"WebServer"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::WebServer.new
    
    
    368
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 368
    
    property :WebServer, type: MintPress::OracleWeblogic::WebServer, array: false, hash: false, short_name: "WebServer", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the web server for this server.", default: MintPress::OracleWeblogic::WebServer.new
  • #web_service ⇒ MintPress::OracleWeblogic::WebService (Default Value: MintPress::OracleWeblogic::WebService.new)
    "Gets Web service configuration for this server"

    Property Attributes
    • short_name"WebService"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    • defaultMintPress::OracleWeblogic::WebService.new
    
    
    370
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 370
    
    property :WebService, type: MintPress::OracleWeblogic::WebService, array: false, hash: false, short_name: "WebService", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Gets Web service configuration for this server", default: MintPress::OracleWeblogic::WebService.new
  • #xml_entity_cache ⇒ MintPress::OracleWeblogic::XMLEntityCache
    "The server's XML entity cache, which is used to\nconfigure the behavior of JAXP\n(Java API for XML Parsing)."

    Property Attributes
    • short_name"XMLEntityCache"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    374
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 374
    
    property :XMLEntityCache, type: MintPress::OracleWeblogic::XMLEntityCache, array: false, hash: false, short_name: "XMLEntityCache", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The server's XML entity cache, which is used to\nconfigure the behavior of JAXP\n(Java API for XML Parsing)."
  • #xml_registry ⇒ MintPress::OracleWeblogic::XMLRegistry
    "The server's XML registry, which is used to\nconfigure the behavior of JAXP\n(Java API for XML Parsing)."

    Property Attributes
    • short_name"XMLRegistry"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    378
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 378
    
    property :XMLRegistry, type: MintPress::OracleWeblogic::XMLRegistry, array: false, hash: false, short_name: "XMLRegistry", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The server's XML registry, which is used to\nconfigure the behavior of JAXP\n(Java API for XML Parsing)."
  • #auto_migration_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether Node Manager can automatically restart this\nserver and its services on another machine if the server fails."

    Property Attributes
    • short_name"AutoMigrationEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    381
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 381
    
    property :AutoMigrationEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "AutoMigrationEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether Node Manager can automatically restart this\nserver and its services on another machine if the server fails."
  • #classpath_servlet_disabled ⇒ [TrueClass,FalseClass]
    "The ClasspathServlet will serve any class file in the classpath\nand is registered by default in every Web application (including\nmanagement)."

    Property Attributes
    • short_name"ClasspathServletDisabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    385
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 385
    
    property :ClasspathServletDisabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ClasspathServletDisabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "The ClasspathServlet will serve any class file in the classpath\nand is registered by default in every Web application (including\nmanagement)."
  • #client_cert_proxy_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether the HttpClusterServlet proxies the\nclient certificate in a special header."

    Property Attributes
    • short_name"ClientCertProxyEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    388
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 388
    
    property :ClientCertProxyEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ClientCertProxyEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether the HttpClusterServlet proxies the\nclient certificate in a special header."
  • #com_enabled ⇒ [TrueClass,FalseClass]
    "Deprecated.\n12.2.1.2.0"

    Property Attributes
    • short_name"COMEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    391
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 391
    
    property :COMEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "COMEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Deprecated.\n12.2.1.2.0"
  • #default_internal_servlets_disabled ⇒ [TrueClass,FalseClass]
    "Specifies whether all default servlets in the servlet engine are\ndisabled."

    Property Attributes
    • short_name"DefaultInternalServletsDisabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    394
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 394
    
    property :DefaultInternalServletsDisabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "DefaultInternalServletsDisabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether all default servlets in the servlet engine are\ndisabled."
  • #httpd_enabled ⇒ [TrueClass,FalseClass]
    "Whether or not HTTP support is enabled on the regular port or\nSSL port."

    Property Attributes
    • short_name"HttpdEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    397
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 397
    
    property :HttpdEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "HttpdEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Whether or not HTTP support is enabled on the regular port or\nSSL port."
  • #http_trace_support_enabled ⇒ [TrueClass,FalseClass]
    "Returns the HttpTraceSupportEnabled value"

    Property Attributes
    • short_name"HttpTraceSupportEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    399
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 399
    
    property :HttpTraceSupportEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "HttpTraceSupportEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Returns the HttpTraceSupportEnabled value"
  • #ignore_sessions_during_shutdown ⇒ [TrueClass,FalseClass]
    "Indicates whether a graceful shutdown operation drops all HTTP\nsessions immediately."

    Property Attributes
    • short_name"IgnoreSessionsDuringShutdown"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    402
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 402
    
    property :IgnoreSessionsDuringShutdown, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "IgnoreSessionsDuringShutdown", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Indicates whether a graceful shutdown operation drops all HTTP\nsessions immediately."
  • #iiop_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this server has IIOP support enabled for both\nthe regular (non-SSL) and SSL ports."

    Property Attributes
    • short_name"IIOPEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    405
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 405
    
    property :IIOPEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "IIOPEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this server has IIOP support enabled for both\nthe regular (non-SSL) and SSL ports."
  • #jms_default_connection_factories_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this server uses JMS default connection\nfactories."

    Property Attributes
    • short_name"JMSDefaultConnectionFactoriesEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    408
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 408
    
    property :JMSDefaultConnectionFactoriesEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "JMSDefaultConnectionFactoriesEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this server uses JMS default connection\nfactories."
  • #listen_port_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this server can be reached through the default\nplain-text (non-SSL) listen port."

    Property Attributes
    • short_name"ListenPortEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    411
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 411
    
    property :ListenPortEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ListenPortEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this server can be reached through the default\nplain-text (non-SSL) listen port."
  • #managed_server_independence_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this Managed Server can be started when the\nAdministration Server is unavailable."

    Property Attributes
    • short_name"ManagedServerIndependenceEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    414
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 414
    
    property :ManagedServerIndependenceEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ManagedServerIndependenceEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this Managed Server can be started when the\nAdministration Server is unavailable."
  • #message_id_prefix_enabled ⇒ [TrueClass,FalseClass]
    "Indicates whether message IDs in logged messages will include a\nprefix."

    Property Attributes
    • short_name"MessageIdPrefixEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    417
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 417
    
    property :MessageIdPrefixEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "MessageIdPrefixEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Indicates whether message IDs in logged messages will include a\nprefix."
  • #msi_file_replication_enabled ⇒ [TrueClass,FalseClass]
    "Deprecated."

    Property Attributes
    • short_name"MSIFileReplicationEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    419
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 419
    
    property :MSIFileReplicationEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "MSIFileReplicationEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Deprecated."
  • #tgiop_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this server supports Tuxedo GIOP (TGIOP)\nrequests."

    Property Attributes
    • short_name"TGIOPEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    422
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 422
    
    property :TGIOPEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "TGIOPEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this server supports Tuxedo GIOP (TGIOP)\nrequests."
  • #tunneling_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether tunneling for the T3, T3S, HTTP, HTTPS, IIOP,\nand IIOPS protocols should be enabled for this server."

    Property Attributes
    • short_name"TunnelingEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    425
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 425
    
    property :TunnelingEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "TunnelingEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether tunneling for the T3, T3S, HTTP, HTTPS, IIOP,\nand IIOPS protocols should be enabled for this server."
  • #use_fusion_for_llr ⇒ [TrueClass,FalseClass]
    "Enables the use of the ADM_DDL store procedure for LLR."

    Property Attributes
    • short_name"UseFusionForLLR"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    427
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 427
    
    property :UseFusionForLLR, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "UseFusionForLLR", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Enables the use of the ADM_DDL  store procedure for LLR."
  • #weblogic_plugin_enabled ⇒ [TrueClass,FalseClass]
    "Specifies whether this server uses the proprietary\nWL-Proxy-Client-IP header."

    Property Attributes
    • short_name"WeblogicPluginEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    430
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 430
    
    property :WeblogicPluginEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "WeblogicPluginEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether this server uses the proprietary\nWL-Proxy-Client-IP header."
  • #server_template ⇒ [MintPress::OracleWeblogic::ServerTemplate,MintPress::OracleWeblogic::Server]
    "The template used to configure this server."

    Property Attributes
    • short_name"ServerTemplate"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    432
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 432
    
    property :ServerTemplate, type: [MintPress::OracleWeblogic::ServerTemplate,MintPress::OracleWeblogic::Server], array: false, hash: false, short_name: "ServerTemplate", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The template used to configure this server."
  • #mtu_size ⇒ Integer
    "Returns the size of the MTU of the NIC."

    Property Attributes
    • short_name"MTUSize"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    434
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 434
    
    property :MTUSize, type: Integer, array: false, hash: false, short_name: "MTUSize", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the size of the MTU of the NIC."
  • #eager_thread_local_cleanup ⇒ [TrueClass,FalseClass]
    "Specifies whether to clean up all ThreadLocals storage from self-tuning thread pool\nthreads after they have finished processing each work request."

    Property Attributes
    • short_name"EagerThreadLocalCleanup"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    437
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 437
    
    property :EagerThreadLocalCleanup, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "EagerThreadLocalCleanup", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specifies whether to clean up all ThreadLocals storage from self-tuning thread pool\nthreads after they have finished processing each work request."
  • #isolate_partition_thread_locals ⇒ [TrueClass,FalseClass]
    "Specified whether the server needs to ensure that threadlocals storage from self-tuning\nthread pool threads must be cleaned up before the threads are used for processing work\nrequests from a different partition."

    Property Attributes
    • short_name"IsolatePartitionThreadLocals"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    441
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 441
    
    property :IsolatePartitionThreadLocals, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "IsolatePartitionThreadLocals", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Specified whether the server needs to ensure that threadlocals storage from self-tuning\nthread pool threads must be cleaned up before the threads are used for processing work\nrequests from a different partition."
  • #max_concurrent_long_running_requests ⇒ Integer
    "The maximum number of running long-running requests that can be submitted\nto all the Managed Executor Services or Managed Scheduled Executor Services\nin the server."

    Property Attributes
    • short_name"MaxConcurrentLongRunningRequests"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    445
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 445
    
    property :MaxConcurrentLongRunningRequests, type: Integer, array: false, hash: false, short_name: "MaxConcurrentLongRunningRequests", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of running long-running requests that can be submitted\nto all the Managed Executor Services or Managed Scheduled Executor Services\nin the server."
  • #max_concurrent_new_threads ⇒ Integer
    "The maximum number of running threads that can be created by all the\nManaged Thread Factories in the server."

    Property Attributes
    • short_name"MaxConcurrentNewThreads"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    448
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 448
    
    property :MaxConcurrentNewThreads, type: Integer, array: false, hash: false, short_name: "MaxConcurrentNewThreads", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "The maximum number of running threads that can be created by all the\nManaged Thread Factories in the server."
  • #sit_config_polling_interval ⇒ Integer
    "Returns the current polling interval for finding the situational config file in the filesystem"

    Property Attributes
    • short_name"SitConfigPollingInterval"
    • has_settertrue
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    450
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 450
    
    property :SitConfigPollingInterval, type: Integer, array: false, hash: false, short_name: "SitConfigPollingInterval", has_setter: true, has_getter: true, has_lister: false, has_creator: false, read_only: false, description: "Returns the current polling interval for finding the situational config file in the filesystem"
  • #classpath_servlet_secure_mode_enabled ⇒ [TrueClass,FalseClass]
    "If secure mode is enabled, the ClasspathServlet will serve only class\nfiles from wellknown packages required for JDBC and JMS functionality."

    Property Attributes
    • short_name"ClasspathServletSecureModeEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    453
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 453
    
    property :ClasspathServletSecureModeEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "ClasspathServletSecureModeEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "If secure mode is enabled, the ClasspathServlet will serve only class\nfiles from wellknown packages required for JDBC and JMS functionality."
  • #cleanup_orphaned_sessions_enabled ⇒ [TrueClass,FalseClass]
    "Indicates if replication service should cleanup orphaned http and ejb sessions."

    Property Attributes
    • short_name"CleanupOrphanedSessionsEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    455
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 455
    
    property :CleanupOrphanedSessionsEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "CleanupOrphanedSessionsEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Indicates if replication service should cleanup orphaned http and ejb sessions."
  • #session_replication_on_shutdown_enabled ⇒ [TrueClass,FalseClass]
    "Indicates if session replication on server shutdown is enabled."

    Property Attributes
    • short_name"SessionReplicationOnShutdownEnabled"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    457
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 457
    
    property :SessionReplicationOnShutdownEnabled, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "SessionReplicationOnShutdownEnabled", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Indicates if session replication on server shutdown is enabled."
  • #sit_config_required ⇒ [TrueClass,FalseClass]
    "Returns whether situational config files are required and WebLogic Server should fail to boot if situational config files are not present."

    Property Attributes
    • short_name"SitConfigRequired"
    • has_settertrue
    • has_getterfalse
    • has_listerfalse
    • has_creatorfalse
    • read_onlyfalse
    
    
    459
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 459
    
    property :SitConfigRequired, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "SitConfigRequired", has_setter: true, has_getter: false, has_lister: false, has_creator: false, read_only: false, description: "Returns whether situational config files are required and WebLogic Server should fail to boot if situational config files are not present."
  • #parent ⇒ MintPress::OracleWeblogic::Domain

    Property Attributes
    • prop_name:admin_server
    
    
    66
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 66
    
    property :parent, type: MintPress::OracleWeblogic::Domain, prop_name: :admin_server
  • #mbean_rest_url ⇒ String (Default Value: '/management/weblogic/latest/domainConfig/servers/#{self.name}')
    Provide an mbean rest URL, so we can find it in API - sure, we can guess at this, but if it's here, ohai, that's great. For non-dynamic objects we can, of course, harvest this...

    Property Attributes
    • default'/management/weblogic/latest/domainConfig/servers/#{self.name}'
    
    
    74
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 74
    
    property :mbean_rest_url, type: String, default: '/management/weblogic/latest/domainConfig/servers/#{self.name}'
  • #host ⇒ MintPress::Infrastructure::Host (Default Value: Proc.new { self.machine.host })

    Property Attributes
    • defaultProc.new { self.machine.host }
    
    
    78
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 78
    
    property :Host, type: MintPress::Infrastructure::Host, default: Proc.new { self.machine.host }
  • #domain ⇒ MintPress::OracleWeblogic::Domain
    The domain this server is associated with

    Property Attributes
    
    
    80
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 80
    
    property :domain, type: MintPress::OracleWeblogic::Domain
  • #health_check_url ⇒ Hash of ⇒ [String,Integer] (Default Value: Proc.new { domain.health_check_url })
    List of urls which must return the status in the value _or_ the string in the value for the server to be considered up example: { "http://@{self.listen_address}:@{self.listen_port}/health" => 200, "http://@{self.listen_address}:@{self.listen_port}/stupidhealthcheck" => "OK" } This will be run from the managed server if a machine/transport is available, or from the mintpress server if no such transport exists.

    Property Attributes
    • defaultProc.new { domain.health_check_url }
    
    
    90
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 90
    
    property :health_check_url, type: [String,Integer], hash: true, default: Proc.new { domain.health_check_url }
  • #health_check_command ⇒ String (Default Value: Proc.new { domain.health_check_command })
    Health check shell command that will be run _on the managed server_ as a part of the `running?` check. This must return zero for success, or non-zero for failure. Note this REQUIRES the server to have a machine/transport defined - if none is defined, this will be _ignored_. This script will be passed 4 parameters: server_name listen_address listen_port ssl_listen_port

    Property Attributes
    • defaultProc.new { domain.health_check_command }
    
    
    100
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 100
    
    property :health_check_command, type: String, default: Proc.new { domain.health_check_command }
  • #node_number ⇒ Integer (Default Value: Proc.new { get_node_number })
    The ID number of this node within its cluster

    Property Attributes
    • defaultProc.new { get_node_number }
    
    
    103
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 103
    
    property :node_number, type: Integer, default: Proc.new { get_node_number }
  • #node_on_machine ⇒ Integer (Default Value: Proc.new { get_node_on_machine })
    The ID number of this node within its machine

    Property Attributes
    • defaultProc.new { get_node_on_machine }
    
    
    105
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 105
    
    property :node_on_machine, type: Integer, default: Proc.new { get_node_on_machine }
  • #server_shutdown_timeout ⇒ Integer (Default Value: 3600)
    How long should we wait for a server to shut down cleanly?

    Property Attributes
    • default3600
    
    
    108
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 108
    
    property :server_shutdown_timeout, type: Integer, default: 3600
  • #use_kill_9 ⇒ [TrueClass, FalseClass] (Default Value: false)
    If we fail to kill the server using kill, should we kill -9 it? You almost never want this...

    Property Attributes
    • defaultfalse
    
    
    111
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 111
    
    property :use_kill_9, type: [TrueClass, FalseClass], default: false
  • #shutdown_uses_force ⇒ [TrueClass, FalseClass] (Default Value: true)
    Should we force shutdown?

    Property Attributes
    • defaulttrue
    
    
    114
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/server.rb', line 114
    
    property :shutdown_uses_force, type: [TrueClass, FalseClass], default: true
  • #name ⇒ String

    Property Attributes
    
    
    23
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/target_mbean.rb', line 23
    
    property :Name, type: String
  • #notes ⇒ String
    Notes about this object

    Property Attributes
    
    
    25
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/target_mbean.rb', line 25
    
    property :Notes, type: String
  • #tags ⇒ Array of ⇒ String
    Array of tags for this object

    Property Attributes
    
    
    27
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/target_mbean.rb', line 27
    
    property :Tags, type: String, array: true

Properties (Read Only)

  • #execute_queues ⇒ Hash of ⇒ MintPress::OracleWeblogic::ExecuteQueue
    "Returns the execute queues configured for this server."

    Property Attributes
    • short_name"ExecuteQueues"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlytrue
    
    
    48
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 48
    
    property :ExecuteQueues, type: MintPress::OracleWeblogic::ExecuteQueue, array: false, hash: true, short_name: "ExecuteQueues", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: true, description: "Returns the execute queues configured for this server."
  • #hosts_migratable_services ⇒ [TrueClass,FalseClass]
    "Gets the hostsMigratableServices attribute of the ServerMBean\nobject"

    Property Attributes
    • short_name"HostsMigratableServices"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlytrue
    
    
    231
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 231
    
    property :HostsMigratableServices, type: [TrueClass,FalseClass], array: false, hash: false, short_name: "HostsMigratableServices", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: true, description: "Gets the hostsMigratableServices attribute of the ServerMBean\nobject"
  • #staging_directory_name ⇒ String
    "The directory path on the Managed Server where all staged\n(prepared) applications are placed."

    Property Attributes
    • short_name"StagingDirectoryName"
    • has_setterfalse
    • has_gettertrue
    • has_listerfalse
    • has_creatorfalse
    • read_onlytrue
    
    
    335
    # File 'src/oracle-weblogic/lib/oracle-weblogic/model/individual/server.rb', line 335
    
    property :StagingDirectoryName, type: String, array: false, hash: false, short_name: "StagingDirectoryName", has_setter: false, has_getter: true, has_lister: false, has_creator: false, read_only: true, description: "The directory path on the Managed Server where all staged\n(prepared) applications are placed."

Constant Summary

Constants included from MintLogger

MintLogger::DEBUG, MintLogger::ERROR, MintLogger::FATAL, MintLogger::INFO, MintLogger::UNKNOWN, MintLogger::VERBOSE, MintLogger::WARN

Instance Attribute Summary

Attributes included from Mixins::Properties

#autopush_set_cache, #dynamic_create, #harvest_on_access, #harvest_undefined_only, #harvested, #tree_root

Instance Method Summary collapse

Methods included from MBeanUtils

#assign_object_by_identity, #assign_object_by_identity_from, #bean_is_changed?, #dump_metadata, #dump_tree_metadata, #get_item_by_identity_name, #get_item_by_identity_name_from, #get_parent_by_identity_name, #harvest, #harvest_anew, #harvest_item_by_name, #harvest_item_by_type, #harvest_wlst, #harvesters, #harvesting, #longname, #lookup_mintpress_by_mbean, #mbean_by_url, #process_mbeans, #register_mbean_url

Methods included from Mixins::Properties

#[], #[]=, #add_validate_report_result, #armour_set_property, #array_contains?, #array_is_a?, #check_autopush, #check_stack_overflow, #clone_property_object, #cloner_handle_single_property, #coerce_single, #contains_as_string?, #display_validate_report_result, #double_initialize?, #dump_to_hash, #find_parent, #find_parent_by_identity, #generate_accessor_functions, #get_canonical_renamed, #get_from_opts, #get_my_name, #get_property, #get_property_item, #has?, included, #initialize_validate_report, #inspect, #is_cloned_object?, #is_mintpress_object?, #is_probably_canonical?, #is_set?, #local_debug, #local_info, #local_verbose, #mintpress_property_definitions, #place_object_by_identity, #process_properties, #prop_set?, #property, #property_definitions, #property_details, #property_is_simple_object?, #push_root!, #require_property, #require_update, #retrieve_docstring, #sanitize, #set_map_dirty, #set_property, #set_property_item, #show_short_array, #strip_defaults!, #synchronize, #uncloned_property_definitions, #update_map, #validate, #validate_generic, #validate_properties, #validate_property, #validate_required, #version_allowed?, #weakref

Methods included from MintLogger::Utils::Common

#boolean_val, #has_value?, #no_value?, #nvl, #path_as_symbol, #ruby_level_to_send

Methods included from Utils

#activate_list, #already_traversed, #announce_self, #bean_type, #build_activate_list, #clear_property_sheet_cache, #create_generic, #create_mbean_components, #delete, #destroy_generic, #empty_mbean?, #execute_script, #exists?, #fast_ls_all, #fast_ls_folder, #fast_ls_object, #fast_ls_object_map, #find_cluster, #find_runtime_path_in_rest, #find_server, #full_url, #get, #get_all_self_names, #get_identity, #get_local_wlst_session, #get_matching_self_names, #get_property_from_target, #get_property_from_target_rest, #get_property_from_target_wlst, #get_property_from_target_wlst_impl, #get_property_sheet, #get_rest_item, #get_rest_url_for_parent, #get_rest_url_for_self, #get_servers, #get_servers_rest, #get_servers_wlst, #get_wl_home, #globmatch?, #handle_create, #http_delete, #http_get, #http_post, #http_put, included, #invalidate_session, #is_meta_object?, #massage_return, #mbean_components, #mbean_exists?, #mbean_lookup, #mbean_properties, #mbean_to_hash, #meta_list?, #my_short_name, #perform_method_generic, #perform_runtime_call_generic_rest, #perform_runtime_method_generic, #post, #raise_http_exception, #remove, #request_headers, #reset_activate_list, #rest_activate_change, #rest_create_generic, #rest_create_mbean_components, #rest_destroy_self, #rest_edit_url, #rest_has_changes, #rest_idempotent_create, #rest_locked, #rest_nonedit_url, #rest_start_change, #rest_undo_change, #runtime_introspection, #start_with_async, #state_with_net_ping, #stop_with_async, #to_nested, #wlst_cd_to, #wlst_create_generic, #wlst_destroy_self, #wlst_find_object, #wlst_find_parent_object, #wlst_generic_mbean_update_all, #wlst_idempotent_create, #wlst_update_mbean

Methods inherited from Server

#activation_time, #admin_server_host, #admin_server_listen_port, #administration_url, #configure_coherence, #create, #current_directory, #current_machine, #default_url, #destroy, #exists?, #exists_via_config?, #exists_via_nm?, #force_shutdown, #force_suspend, #gen_startup_props, #getState, #get_any_transport, #get_my_transport, #get_node_number, #get_node_on_machine, #get_pid, #get_state, #health_state, #health_state_jmx, #healthy?, #i_pv4_url, #i_pv6_url, #import_props_from_model, #is_admin_server, #is_admin_server_listen_port_secure, #is_administration_port_enabled, #is_in_sit_config_state, #is_listen_port_enabled, #is_registered, #is_restart_required, #is_ssl_listen_port_enabled, #kill, #m_bean_info, #middleware_home, #nm_kill, #node_manager_restart_count, #object_name, #open_sockets_current_count, #oracle_home, #overall_health_state, #overall_health_state_jmx, #patch_list, #perform_action, #reported_state, #restart_ssl_channels, #restarts_total_count, #running?, #server_channel, #server_classpath, #set_current_machine, #sockets_opened_total_count, #start, #start_nm, #start_via_nm, #state, #state_val, #state_with_admin_wlst_using_nm, #state_with_all_options, #state_with_local_wlst_using_nm, #state_with_nm, #state_with_port, #state_with_process, #state_with_rest, #state_with_wlst, #stop, #stop_async, #stop_via_nm, #stopped?, #uncached_exists?, #weblogic_home, #weblogic_version

Methods included from FancyNew

included

Constructor Details

#initialize(opts = {}) ⇒ MintPress::OracleWeblogic::AdminServer

Constructor

Examples:

Create Domain with Managed Servers - @see Domain#configure_offline

admin_password = Mint::Secret.new("welcome1")

domain_opts={Name: 'wls_domain', AdminServerName: 'AdminServer', AdminUsername: 'weblogic', AdminPassword: admin_password, RootDirectory: '/oracle/app/wls/environments', installations: [wls_installation1, wls_installation2])
domain=MintPress::OracleWeblogic::Domain.new(domain_opts)

domain.admin_server.machine = domain.machines['appserver1.mintpress.io']
domain.admin_server.listen_address = 'appserver1.mintpress.io'
domain.admin_server.listen_port = 7010
domain.admin_server.ssl.enabled = true
domain.admin_server.ssl.listen_port = 7020
domain.admin_server.machine.nodemanager.home = "#{domain.domain_home}/nodemanager"

Parameters:

  • opts (Hash) (defaults to: {})
    A Hash of options with which to instantiate this class

Raises:

  • (ArgumentError)
    invalid argument passed into constructor

Since:

  • 0.1.0

Instance Method Details

#actual_rest_available?(remote_only: false) ⇒ Boolean

Returns:

  • (Boolean)

Since:

  • 0.1.0

#longclassObject

Since:

  • 0.1.0

#post_stopObject

Why? Because the nodemanager, that's why....

Since:

  • 0.1.0

#rest_available?Boolean

Returns:

  • (Boolean)

Since:

  • 0.1.0

#restartvoid

This method returns an undefined value.

Restart the Admin Server

Since:

  • 0.1.0

#shortclassObject

AdminServer is a specially named server

Since:

  • 0.1.0

#start_asyncvoid

This method returns an undefined value.

Start the AdminServer using the NodeManager if not already running For all other actions, use the methods from Server

Since:

  • 0.1.0

#usagevoid

This method returns an undefined value.

Print usage

Since:

  • 0.1.0