Interface DeviceInformationCheckResult
public interface DeviceInformationCheckResult
This is the result of the
DeviceInformationCheck
operation.
If configuration mismatches in a given server could be found, but retrieving the
server configuration failed for another server. The found mismatches will be returned
by the mismatches()
method, and the error will be returned by the errors()
method.
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionerrors()
Returns the errors that occurred retrieving the configuration mismatches.Returns the mismatches configuration mismatches between the mobile SDK.
-
Method Details
-
mismatches
Set<DeviceInformationMismatch> mismatches()Returns the mismatches configuration mismatches between the mobile SDK.WARNING: if your application has been upgraded from versions of the SDK previous to 3.8.0, and thus some users were registered using earlier versions, some false positive
DeviceInformationMismatch.MissingAuthenticatorInServer
mismatches can be returned for those users.- Returns:
- the mismatches configuration mismatches between the mobile SDK
-
errors
Set<DeviceInformationCheckError> errors()Returns the errors that occurred retrieving the configuration mismatches.- Returns:
- the errors that occurred retrieving the configuration mismatches.
-