Class DataSourceElementBeanInfo

java.lang.Object
java.beans.SimpleBeanInfo
org.apache.jmeter.testbeans.BeanInfoSupport
org.apache.jmeter.protocol.jdbc.config.DataSourceElementBeanInfo
All Implemented Interfaces:
BeanInfo

public class DataSourceElementBeanInfo extends BeanInfoSupport
  • Constructor Details

    • DataSourceElementBeanInfo

      public DataSourceElementBeanInfo()
  • Method Details

    • getTransactionIsolationMode

      public static int getTransactionIsolationMode(String tag)
      Converts a string description of a valid transaction isolation mode to the respective integer value. Currently supported tags and their values are:
      DEFAULT
      -1
      TRANSACTION_NONE
      0
      TRANSACTION_READ_COMMITTED
      2
      TRANSACTION_READ_UNCOMMITTED
      1
      TRANSACTION_REPEATABLE_READ
      4
      TRANSACTION_SERIALIZABLE
      8
      Parameters:
      tag - name of the transaction isolation mode
      Returns:
      integer value of the given transaction isolation mode