Home > Global Settings > Advanced Settings > Services Level Settings > RAS Service

RAS Service

Property Description
Business Application Authorisation Code configuration
Defines configurations related to OAuth authorisation code provided to business applications:
  • BA_OAUTH_CODE_EXPIRY_TIME = 10
    Time interval in minutes to define the expiry time of OAuth2 authorisation code generated for business applications. Default value: 10 minutes.
Business Application Access token configuration
Defines configurations related to access token granted to business applications:
  • BA_OAUTH_ACCESS_TOKEN_EXPIRY_TIME = 60
    Time interval in minutes to define the expiry time of access token for business applications. Default value: 60 minutes (1 Hour).

  • BA_OAUTH_REFRESH_TOKEN_EXPIRY_TIME = 525600
    Time interval in minutes to define the expiry time of refresh token for business applications. Default value: 525600 minutes (1 Year).
Mobile Application Access token Configurations 
Defines configurations related to access token granted to mobile applications:
  • MOBILE_OAUTH_ACCESS_TOKEN_EXPIRY_TIME = 60
    Time interval in minutes to define the expiry time of access token for mobile applications. Default value: 60 minutes (1 Hour).

  • MOBILE_OAUTH_REFRESH_TOKEN_EXPIRY_TIME = 525600
    Time interval in minutes to define the expiry time of refresh token for mobile applications. Default value: 525600 minutes (1 Year).
Authorisation request Configurations Defines configurations related to authorisation requests:
  • RASDATA_CREDENTIALS_EXPIRY_PERIOD = 86399
    Time period in seconds after which Pending Authorisation Request (ARQ) transactions are deleted. Default value: 86399 (1 Day).

  • EXPIRED_RASTOKEN_DELETION_PERIOD = 21600
    Time period in minutes after which expired access tokens are deleted by RAS Service. Default value: 21600 minutes(15 Days).

  • RAS_REQUEST_EXPIRY_PERIOD = 100
    Time interval in seconds to define the expiry period of authorised pending request. Default value: 100 seconds

  • QR_CODE_EXPIRY = 60
    Time interval in seconds to define the expiry of a QR code. Default value: 60 seconds
Database Lookup Threshold It defines the time interval after which the service will look for Signature Activation Data (SAD) in database. The database lookup threshold is defined using the following property:
  • DB_LOOKUP_THRESHOLD = 20
Default value: 20 seconds.
Transaction logs settings
Transactions can be stored either directly or delayed for better performance. The following properties are used for logging:
  • TRANSACTION_LOG_MODE = LAZY
    Used to decide whether the transactions are kept in memory before these are stored in the database (LAZY logging) or directly stored in the database (EAGER logging). Possible values: LAZY, EAGER
    In case of LAZY logging the transaction logs are kept in memory upto the number of seconds configured in TRANSACTION_LOG_LAZY_INTERVAL or number of transactions configured in TRANSACTION_LOG_LAZY_RECORD_COUNT whichever is reached first

  • TRANSACTION_LOG_LAZY_INTERVAL = 2
    When LAZY logging is configured, transactions are kept in memory upto the configured time or if the configured TRANSACTION_LOG_LAZY_RECORD_COUNT is reached before it

  • TRANSACTION_LOG_LAZY_RECORD_COUNT = 50
    When LAZY logging is configured, transactions are kept in memory until the configured number of transactions is reached or if the configured TRANSACTION_LOG_LAZY_INTERVAL is met before it. 

See also