Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

The Services

We have added Spring services in the format ILimitsApp<DatabaseType>CrudService to provide a more unified approach to data management in Atoti Limits. These services are designed to work with different types of databases and datastores. The primary services are as follows:
ServiceDescription
ILimitsAppCrudServiceThe parent interface for the following services. It is not directly imported into the application but serves as a means to combine the required functionality for each service.
ILimitsAppDatastoreCrudServiceManages objects that exist in the Atoti Datastore. These objects power the Atoti Limits cube.
ILimitsAppJpaDatabaseCrudServiceManages objects that exist in an external database. Changes to these objects are propagated using JPA.
IPreferredLimitsAppCrudServiceThe default implementation of ILimitsAppCrudService. It is invoked throughout the application and powers the REST services used by the Atoti Limits UI. It uses a combination of both ILimitsAppDatastoreCrudService and ILimitsAppJpaDatabaseCrudService to manage objects between both an Atoti Datastore and an external database.
In summary, ILimitsAppCrudService provides a general contract for persistent CRUD services in the Limits Application, the ILimitsAppDatastoreCrudService and ILimitsAppJpaDatabaseCrudService provide specific implementations for a Datastore and a JPA Database, respectively. The choice between these two depends on the specific persistence mechanism your application is using. For more information on extending these services see Adding Custom Persistence Services.