strolch/li.strolch.tutorialapp
Robert von Burg 48caa84903 [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 15:54:30 +02:00
..
src [Major] Refactored SystemAction in privileges 2016-09-29 15:54:30 +02:00
.gitignore moved everything to a subdirectory for repo merge 2014-09-16 08:54:40 +02:00
LICENSE moved everything to a subdirectory for repo merge 2014-09-16 08:54:40 +02:00
README.md [Project] Updated project for deployment to Maven Central 2016-09-22 09:37:55 +02:00
pom.xml [Project] Set new snapshot version 1.4.0-SNAPSHOT 2016-09-22 11:33:15 +02:00

README.md

li.strolch.tutorialapp

A simple Strolch tutorial app