BIDDocumentProvider
BIDDocumentProvider
public class BIDDocumentProvider extends Object
↳ package com.onekosmos.blockid.sdk.document
This class is responsible for all document management, such as adding and removing identity documents, and other miscellaneous documents.
Enum Values
Type | Name | Description |
---|---|---|
RegisterDocCategory | identity_document | A value to to represent document as identity document |
RegisterDocCategory | misc_document | A value to to represent document as miscellaneous document |
Method Summary
Type | Name | Description |
---|---|---|
boolean | checkUserDocumentExist(LinkedHashMap<String, Object> documentMap) | Checks and returns if the given document is already available in BlockID blockchain platform |
String | getEnrolledDocumentList() | Returns the list of all documents. |
static BIDDocumentProvider | getInstance() | Returns an instance of BIDDocumentProvider. |
String | getUserDocument(@Nullable String id, @Nullable String type, @Nullable String category) | 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 |
boolean | isDocumentEnrolled(String type, String category) | Checks and returns if the document is registered based on given type and category |
Method Detail
checkUserDocumentExist
public boolean checkUserDocumentExist(LinkedHashMap<String, Object> documentMap)
- Checks and returns if the given document is already available in BlockID blockchain platform.
Parameters | |
---|---|
documentMap | LinkedHashMap<String, Object>: The document to be looked up |
getEnrolledDocumentList
public String getEnrolledDocumentList()
- Returns the list of all documents.
getInstance
public static synchronized BIDDocumentProvider getInstance()
- Returns an instance of BIDDocumentProvider.
getUserDocument
public String getUserDocument(@Nullable String id, @Nullable String type, @Nullable String category)
- 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 | |
---|---|
id | String: The number for which the user has requested the document |
type | String: The type of document (DL, PPT, etc.). |
category | String: The category of document (identity_document, misc_document) |
isDocumentEnrolled
public boolean isDocumentEnrolled(String type, String category)
- Checks and returns if the document is registered based on given type and category.
Parameters | |
---|---|
type | String: The type of document (DL, PPT, etc.). |
category | String: The category of document (identity_document, misc_document) |