klehmann / domino-jna

Java project to access the IBM/HCL Domino C API using Java Native Access (JNA)
Apache License 2.0
66 stars 16 forks source link

Moving changes from develop to master #80

Closed klehmann closed 2 months ago

klehmann commented 2 months ago

Biggest update ever for Domino JNA!

DQL

MIME

Named docs

NSF properties/features

Security

Misc

Virtual Views

We completely reinvented Domino view indexing and the QueryResultsProcessor in Java with a lot more features!

A Virtual View is an in-memory Java structure to store, analyze and quickly traverse Domino and any other data. Like Domino views, Virtual Views provide document summary data in a categorized and sorted way with total/average computation, handling of expanded/collapsed categories and options to display a subset of the view (e.g. single category or selected entries).

But the view content can be build from data, profile and design documents, with cross-database support and fast incremental view updates when NSF data is changed. Compute your column values with formula code or Java functions, with additional data from external data sources (poor man's JOIN). See this test case for a few examples how this feature is used: https://github.com/klehmann/domino-jna/blob/develop/domino-jna/src/test/java/com/mindoo/domino/jna/test/TestVirtualView.java

And here is the full feature list for the first release of the Virtual View API: