strolch/li.strolch.tutorialapp/src/runtime
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
..
config [Major] Refactored SystemAction in privileges 2016-09-29 15:54:30 +02:00
data [Project] fixing package structure of tutorialapp 2014-09-22 20:11:36 +02:00
dbStore [Project] fixing package structure of tutorialapp 2014-09-22 20:11:36 +02:00