This plugin stores and manipulates identities. An identity is composed of attributes. Each attribute can be read, written or certified by the application through REST APIs.
This plugin allows admin users to define the identity referential
The plugin provides a REST API to manage identities. Several versions of the API can be called:
Version 2 can be used only for getting an Identity by its CUID or GUID. Only version 3 offers full API usage (CRUD and research).
To run IDS, you will need a running [Elasticsearch instance (8+)](https://www.elastic.co/fr/downloads/elasticsearch). No particular configuration is needed, you can download and run it.
IDS uses [PostgreSQL 10+](https://www.postgresql.org/) as relational database to store its inner data.
There is one particular configuration found in identitystore_context.xml file that uses (https://docs.spring.io/spring-framework/docs/3.2.0.M1/reference/html/scheduling.html)[spring tasks] to schedule the full indexation of identities in Elasticsearch (as Lutece Daemon cannot be croned yet).
<!-- Schedule full E/S identities reindexing --> <bean id="identitystore.fullIndexer" class="fr.paris.lutece.plugins.identitystore.service.indexer.elastic.index.task.FullIndexTask" ></bean> <task:scheduler id="identitystore.fullIndexerScheduler" /> <task:scheduled-tasks scheduler="identitystore.fullIndexerScheduler"> <task:scheduled ref="identitystore.fullIndexer" method="run" cron="${identitystore.index.full.cron}"/> </task:scheduled-tasks>
The plugins exposes web methods to manage identities. Check /jsp/site/Portal.jsp?page=swaggerui page for more details about these methods (coming soon..)