No, it was not reset, just reorganized. The main weight was transferred to the Global object and its onStart() method.
Using it, you can perform general operations with the database, as well as load and move any YAML file. Check out the Zentasks sample to find out how to use it in your application (especially: app/Global.java , conf/initial-data.yml ); e.g. from sample :
Map<String,List<Object>> all = (Map<String,List<Object>>)Yaml.load("initial-data.yml");
It is just beginning! Using a Global object up to your imagination!
source share