Package com.scytales.mvalid.sdk.verify
Interface DeviceVerifierResult
-
- All Implemented Interfaces:
-
com.scytales.mvalid.sdk.verify.VerifierResult
public interface DeviceVerifierResult implements VerifierResult
The interface Device verifier result.
-
-
Method Summary
Modifier and Type Method Description abstract boolean
authenticationSucceed()
Authentication succeed boolean. abstract String
authenticationMethod()
Authentication method string. abstract Map<String, List<String>>
getUnauthorizedElements()
Gets unauthorized elements. abstract List<Map<String, String>>
getMSOElements()
Gets mso elements. abstract Map<String, ZonedDateTime>
getMSOValidity()
Gets mso validity. -
-
Method Detail
-
authenticationSucceed
abstract boolean authenticationSucceed()
Authentication succeed boolean.
-
authenticationMethod
abstract String authenticationMethod()
Authentication method string.
-
getUnauthorizedElements
abstract Map<String, List<String>> getUnauthorizedElements()
Gets unauthorized elements.
-
getMSOElements
abstract List<Map<String, String>> getMSOElements()
Gets mso elements.
-
getMSOValidity
abstract Map<String, ZonedDateTime> getMSOValidity()
Gets mso validity.
-
-
-
-