ORABaseConfigSettings Enum Reference

Inherits ORAConfigSettings.

Static Public Member Functions

static ORABaseConfigSettings  get (final String key)

Public Attributes

  ENABLED
  Enable/Disable sdk.
  MAX_PERSISTED_EVENTS
  Max Persisted Events.
  SEND_INTERVAL_MILLIS
  Send Interval In Milliseconds.
  AUTO_SEND_THRESHOLD_PERCENT
  Autosend Threshold %.
  EVENTS_PER_SEND
  Events Per Send.
  END_POINT_CONFIG
  End Point Config.
  DEBUG
  Debug. More...
  HTTP_CONNECT_TIMEOUT_MILLIS
  HTTP Connect Timeout In Milliseconds.
  HTTP_READ_TIMEOUT_MILLIS
  HTTP Read Timeout In Milliseconds.
  BATTERY_CHECK_MILLIS
  Battery Check in Milliseconds.
  BATTERY_MIN_CHG_PERCENT
  Battery Min Charge %.
  REFERRER_CHECK_TIMEOUT_MILLIS
  Referrer Check Timeout In Milliseconds.
  MAX_SESSION_MILLIS
  Max Session In Milliseconds.
  SESSION_TIMEOUT_MILLIS
  Session Timeout In Milliseconds.
  ONLY_SEND_OVER_WIFI
  Only Send Over Wifi.
  REPORT_LOCATION_ENABLED
  Send GPS.
  APP_NAME
  App Class Name.
  APP_VERSION
  App Version.
  MASK_IP_ENABLED
  Mask IP Addr.
  EXTRA_PARAMS
  Extra Params.
  SEND_UNIQUE_ID_ENABLED
  Send Unique ID Enabled.
  APP_START_AUTO_ENABLED
  App Start/Terminate Automatic Events Enabled.
  FOREGROUND_AUTO_ENABLED
  Foreground/Background Automatic Events Enabled.
  PUSH_AUTO_ENABLED
  Push Notification Automatic Events Enabled.
  ERROR_AUTO_ENABLED
  App Error Automatic Events Enabled.
  ACTIVITY_AUTO_ENABLED
  Activity Automatic Events Enabled.
  FRAGMENT_AUTO_ENABLED
  Fragment Automatic Events Enabled.
  IMMEDIATE_EVENT_STORING_ENABLED
  Immediate Event Storing Enabled.
  SEND_SCREEN_VIEW_WITH_ACTIVITY_VIEW_ENABLED
  Send Screen View With Activity View.
  HTTP_THREAD_COUNT
  Http thread count.
  HTTP_BACKGROUND_TASK_ENABLED
  Http Background Task Enabled.

Detailed Description

This class contains all the config settings related to core module. Please refer com.oracle.cx.mobilesdk.constants.ORABaseConfigKeys for corresponding string literals.

Member Function Documentation

◆ get()

static ORABaseConfigSettings get ( final String  key )
static

Returns the enum associated with the key. If the enum is not found for the key, it will return null

Parameters
key key for the enum
Returns
return enum for the key.

Member Data Documentation

◆ DEBUG

DEBUG
Initial value:
=(ORABaseConfigKeys.DEBUG,
"Debug",
Boolean.class.getSimpleName(),
ORAConstants.TRUE,
new ORAConfigValidator() {
@Override
publicboolean isValid(final String value) {
return value.equalsIgnoreCase(ORAConstants.TRUE) || value.equalsIgnoreCase(
ORAConstants.FALSE);
}
},
new ORAConfigParserConverter())

Debug.

Deprecated:
It is deprecated and and will be removed in future releases, instead use ORALogger to enable or disable the logs
 
The documentation for this enum was generated from the following file:
  • ORABaseConfigSettings.java