ThresholdParamsBean


Overview  |   Related MBeans  |   Attributes  |   Operations

Overview

Thresholds are a point that must be exceeded in order to produce a given effect. These action points may cause logging or flow control or other actions, as defined by the specific points whose values have been exceeded.

       
Security rolesThe following roles have read, write, and invoke permission for all non-encrypted attributes and operations in this MBean:
  • Deployer
Fully Qualified Interface NameIf you use the getMBeanInfo operation in MBeanTypeServiceMBean, supply the following value as this MBean's fully qualified interface name:
weblogic.j2ee.descriptor.wl.ThresholdParamsBean
Factory Methods No factory methods. Instances of this MBean are created automatically.


Related MBeans

This section describes attributes that provide access to other MBeans.


    TemplateBean

    Finds the template bean for this destination.

           
    Privileges Read only
    TypeTemplateBean
    Relationship type: Reference.


    Attributes

    This section describes the following attributes:


    BytesHigh

    The upper threshold (total number of bytes in this destination) that triggers logging or flow control events. The value of java.lang.Long.MAX_VALUE disables logging and flow control events for the destination.

    If the number of bytes exceeds this threshold, the triggered events are:

    Range of Values: <= BytesMaximum; >BytesThresholdLow

    Any change to this threshold affects only incoming messages; stored messages are not affected.

           
    Privileges Read/Write
    Typelong
    Default Value9223372036854775807
    Minimum value0
    Maximum value9223372036854775807

    BytesLow

    The lower threshold (total number of bytes in this destination) that triggers logging or flow control events. The value of java.lang.Long.MAX_VALUE disables logging and flow control events for the destination.

    If the number of bytes falls below this threshold, the triggered events are:

    Range of Values: < BytesThresholdHigh

    Any change to this threshold affects only incoming messages; stored messages are not affected.

           
    Privileges Read/Write
    Typelong
    Default Value9223372036854775807
    Minimum value0
    Maximum value9223372036854775807

    MessagesHigh

    The upper threshold (total number of messages in this destination) that triggers logging or flow control events. The value of java.lang.Long.MAX_VALUE disables logging and flow control events for the destination.

    If the number of messages exceeds this threshold, the triggered events are:

    Range of Values: <= MessagesMaximum; >MessagesThresholdLow

    Any change to this threshold affects only incoming messages; stored messages are not affected.

           
    Privileges Read/Write
    Typelong
    Default Value9223372036854775807
    Minimum value0
    Maximum value9223372036854775807

    MessagesLow

    The lower threshold (total number of messages in this destination) that triggers logging or flow control events. The value of java.lang.Long.MAX_VALUE disables logging and flow control events for the destination.

    If the number of messages falls below this threshold, the triggered events are:

    Range of Values: < MessagesThresholdHigh

    Any change to this threshold affects only incoming messages; stored messages are not affected.

           
    Privileges Read/Write
    Typelong
    Default Value9223372036854775807
    Minimum value0
    Maximum value9223372036854775807


    Operations

    This section describes the following operations:


      isSet

      Return true if the given property has been explicitly set in this bean.

         
      Operation Name"isSet"
      ParametersObject [] {  propertyName }

      where:

      • propertyName is an object of type java.lang.String that specifies:

        property to check

      SignatureString [] { "java.lang.String" }
      Returns boolean
      Exceptions
      • java.lang.IllegalArgumentException
        IllegalArgumentException if propertyName is not a recognized property

      unSet

      Restore the given property to its default value.

         
      Operation Name"unSet"
      ParametersObject [] {  propertyName }

      where:

      • propertyName is an object of type java.lang.String that specifies:

        property to restore

      SignatureString [] { "java.lang.String" }
      Returns void
      Exceptions
      • java.lang.IllegalArgumentException
        UnsupportedOperationException if called on a runtime implementation.