Java
What is the relationship of an Offline licensing instance and the gracePeriodDays & ignoreServerExceptions parameters? How and when do these parameters interact with an Offline licensing instance?
The behavior depends on how the offline mode is configured:
Offline Mode Enabled
No online license checks are made.
gracePeriodDaysandignoreServerExceptionsare ignored.License validity is checked locally using cryptographic signatures.
Offline License Used in Online Mode
checkLicense()calls will still be made.gracePeriodDaysallows server exceptions to be ignored for a limited time.If
ignoreServerExceptionsis set to true, server-related exceptions will be ignored indefinitely, and the local license will be used instead.
Was this helpful?