strolch/li.strolch.tutorialapp/src
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
..
assembly moved everything to a subdirectory for repo merge 2014-09-16 08:54:40 +02:00
main [Major] Moved ch.eitchnet to li.strolch 2016-06-26 11:38:41 +02:00
runtime [Major] Refactored SystemAction in privileges 2016-09-29 15:54:30 +02:00