Overview
The individual registry provides APIs to create citizens or users to the DIGIT platform. This document provides the configuration details for setting up individuals.
Pre-requisites
Knowledge of Java/J2EE (preferably Java 8 version).
Knowledge of Spring Boot and spring-boot microservices.
Knowledge of Git or any version control system.
Knowledge of RESTful web services.
Knowledge of the Lombok library is helpful.
Knowledge of eGov-mdms service, eGov-persister, eGov-idgen, eGov-indexer, and eGov-user will be helpful.
Functionalities
Provides APIs to create, update, and delete individuals.
Provides APIs to bulk create, update, and delete individuals.
Inactivates the status of individuals post deletion.
Provides search API for individuals on name, individual ID, unique ID, and date of birth.
Setup Details
The source code for an Individual is present in the health-campaign-services Git repo. The spring boot application needs the Lombok* extension added to the IDE to load it. Once the application is up and running, the API requests can be posted to the URL and the IDs can be generated.
* In the case of IntelliJ, the plugin can be installed directly. For eclipse, the Lombok jar location has to be added in the eclipse.ini file in this format javaagent:lombok.jar.
API Details
Application.properties file information :
Kafka topics persister configs for eGov persister
Copy individual.consumer.bulk.create.topic=individual-consumer-bulk-create-topic
individual.consumer.bulk.update.topic=individual-consumer-bulk-update-topic
individual.consumer.bulk.delete.topic=individual-consumer-bulk-delete-topic
individual.producer.save.topic=save-individual-topic
individual.producer.update.topic=update-individual-topic
individual.producer.delete.topic=delete-individual-topic
URLs for the external API references:
idGen Id formats :->
idgen.individual.id.format=individual.id // eg: IND-[cy:yyyy-MM-dd]-[SEQ_ADDRESS_IND]
Configuration Details
Access MDMS Configurations
Action test: URL actions adding
Copy {
"id": 1549,
"name": "Individual Create",
"url": "/individual/v1/_create",
"displayName": "Individual Create",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1550,
"name": "Individual Update",
"url": "/individual/v1/_update",
"displayName": "Individual Update",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1551,
"name": "Individual Search",
"url": "/individual/v1/_search",
"displayName": "Individual Search",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1561,
"name": "Individual Bulk Create",
"url": "/individual/v1/bulk/_create",
"displayName": "Individual Bulk Create",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1562,
"name": "Individual Bulk Update",
"url": "/individual/v1/bulk/_update",
"displayName": "Individual Bulk Update",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1563,
"name": "Individual Delete",
"url": "/individual/v1/_delete",
"displayName": "Individual Delete",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
},
{
"id": 1564,
"name": "Individual Bulk Delete",
"url": "/individual/v1/bulk/_delete",
"displayName": "Individual Bulk Delete",
"orderNumber": 0,
"parentModule": "",
"enabled": false,
"serviceCode": "individual",
"code": "null",
"path": ""
}
Access to role-based actions
Copy {
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1549,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1549,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1549,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1550,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1550,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1550,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1551,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1551,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1551,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1561,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1561,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1561,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1562,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1562,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1562,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1563,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1563,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1563,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "SYSTEM_ADMINISTRATOR",
"actionid": 1564,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "REGISTRAR",
"actionid": 1564,
"actioncode": "",
"tenantId": "default"
},
{
"rolecode": "DISTRIBUTOR",
"actionid": 1564,
"actioncode": "",
"tenantId": "default"
},
Persister Configuration
Individual Persister Yaml
Indexer Configuration
Individual Indexer Yaml
Database Schema
Postman Collection
https://www.postman.com/lunar-resonance-126497/workspace/hcm/collection/24751924-8dbf724a-ae3b-4bff-a07c-c314101594ce