|
Property
|
Description
|
|
Transaction logs settings
|
Transactions can be stored either directly or delayed for better performance. The following properties are used for logging:
- TRANSACTION_LOG_COLUMNS = ResponseStatus, RequestTime, ResponseTime, Request, Response, RelyingPartyId, RelyingPartyIp, RelyingPartySslCert, ErrorCode
Used to store transaction log columns in the database to keep the database growth under control. Default values: ResponseStatus, RequestTime, ResponseTime, Request, Response, RelyingPartyId, RelyingPartyIp, RelyingPartySslCert, ErrorCode
- 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. Default value: 2 seconds.
- 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. Default value: 50.
|
|
Upload Base Path
|
The base path of the upload repository of the ICAO PKD which will be used to upload Master Lists, DS Certificates and CRLs to ICAO PKD:
- ICAO_PKD_UPLOAD_BASE_DN : dc=data, dc=upload, dc=pkd, dc=icao, dc=int
|
|
Upload Master List
|
The path to upload Master Lists to ICAO PKD. This path will be appended to Base Path to construct a complete path:
- ICAO_PKD_UPLOAD_MASTERLIST_DN : o=ml, c=<c>, dc=data, dc=upload, dc=pkd, dc=icao, dc=int
|
|
Upload Document Signer
|
The path to upload Document Signer (DS) certificates to ICAO PKD:
- ICAO_PKD_UPLOAD_DS_DN : o=dsc, c=<c>, dc=data, dc=upload, dc=pkd, dc=icao, dc=int
|
|
Upload CRL
|
The path to upload CRLs to ICAO PKD:
- ICAO_PKD_UPLOAD_CRL_DN : o=crl, c=<c>, dc=data, dc=upload, dc=pkd, dc=icao, dc=int
|
|
Download Base Path
|
The base path of the download repository of the ICAO PKD from where Master Lists, DS Certificates and CRLs will be downloaded:
- ICAO_PKD_DOWNLOAD_BASE_DN : dc=download, dc=pkd, dc=icao, dc=int
|
|
Download Master List
|
The path to download Master Lists from ICAO PKD. This path will be appended to base download path to construct a complete path to ICAO Download repository.
- ICAO_PKD_DOWNLOAD_MASTERLIST_DN : o=ml, c=<c>, dc=<data>, dc=download, dc=pkd, dc=icao, dc=int
|
|
Download Document Signer
|
The path to download Document Signer (DS) certificates from ICAO PKD.
- ICAO_PKD_DOWNLOAD_DS_DN : o=dsc, c=<c>, dc=<data>, dc=download, dc=pkd, dc=icao, dc=int
|
|
Download CRL
|
The path to download CRLs from ICAO PKD.
- ICAO_PKD_DOWNLOAD_CRL_DN : o=crl, c=<c>, dc=<data>, dc=download, dc=pkd, dc=icao, dc=int
|