Skip to main content

BIDDocumentProvider

public class BIDDocumentProvider

This class is responsible for all document management, including adding or removing identity documents, and any other miscellaneous documents.

Enum Values

Parameters
RegisterDocCategoryIdentity_DocumentRepresents an identity document
Misc_DocumentRepresents a miscellaneous document
RegisterDocTypeDLRepresents a driver's license document
LIVE_IDRepresents a Live ID document
NATIONAL_IDRepresents a national ID document
PINRepresents PIN document
PPTRepresents passport document
SSNRepresents social security number document

Method Summary

Parameters
StringgetEnrolledDocumentList()Returns a list of all the documents
StringgetUserDocument(id: String?, type: String?, category: String?)Checks and returns document based on the given criteria. All or any of the input parameters can be NULL. If all the parameters are NULL, the method returns a list of all the documents registered
isAnyDocumentEnrolledisAnyDocumentEnrolled()Checks and returns if any documents are registered

Method Detail

getEnrolledDocumentList

public func getEnrolledDocumentList() -> String

  • Returns the list of all documents.

getInstance

public static synchronized BIDDocumentProvider getInstance()

  • Returns an instance of BIDDocumentProvider.

getUserDocument

public func getUserDocument(id: String?, type: String?, category: String?) -> String?

  • Checks and returns document based on given criteria. All or any of the input parameter can be NULL. If all the parameter will be NULL, the method returns list of all documents registered.
Parameters
idString: The number for which the user has requested the document.
typeString: The type of document (DL, PPT, etc.).
categoryString: The category of document (identity_document, misc_document)

isAnyDocumentEnrolled

public func isAnyDocumentEnrolled() -> Bool

  • Checks and returns if any of the document is registered.