Authentification and authorisation
http://www.axiomatics.com/blog/entry/authentication-vs-authorization-part-2-saml-and-oauth-2.html
http://www.axiomatics.com/blog/entry/authentication-vs-authorization-part-2-saml-and-oauth-2.html
https://github.com/apache/cxf.git https://github.com/Talend/tesb-rt-se/tree/master/examples/cxf/jaxrs-oauth2
Recommended book for Java concurrency https://github.com/HackathonHackers/programming-ebooks/blob/master/Java/Java%20Concurrency%20in%20Practice.pdf
Recommended reading for RxJava http://akarnokd.blogspot.com.au/2015/06/subjects-part-1.html Another worth reading article about Rx https://gist.github.com/st...
1. Void return and zero paramter Use Runnable 1 2 3 4 5 6 void runTask(Runnable task) { task.run(); } runTask(()-> { // do something }); 2. Return v...