strolch/li.strolch.persistence.xml
Robert von Burg dd227c65d0 [Major] Refactored SystemAction in privileges
Simplified the API, removed the privileged user - now always use the
agent system user for running system actions. One method has no return
value and one has a return value. Now it is easy to perform a system
action using:

    runAsAgent(ctx -> {
      // do work			
    });

    String result = runAsAgentWithResult(ctx -> {
      // do work
      return "done";
    });

    // execute a SystemAction
    runAsAgent(action);

    // execute a SystemActionWithResult
    String result = runAsAgentWithResult(actionWithResult);
2016-09-29 12:26:27 +02:00
..
src [Major] Refactored SystemAction in privileges 2016-09-29 12:26:27 +02:00
.gitignore moved everything to a subdirectory for repo merge 2014-09-16 08:56:24 +02:00
LICENSE moved everything to a subdirectory for repo merge 2014-09-16 08:56:24 +02:00
README.md [Project] Updated project for deployment to Maven Central 2016-09-22 09:37:55 +02:00
pom.xml [Project] Fixed version in persistence.xml 2016-09-22 15:27:18 +02:00

README.md

li.strolch.persistence.xml

XML Persistence Implementation for Strolch