This is an old revision of the document!
If you want to know the current user-name in your application, simply call:
getApplication().getUserName();
The method returns the same as:
getApplication().getConnection().getUserName();
If getApplication() return type is an IApplication, use this:
((ProjX)getApplication()).getUserName();
Above code is client-side code. If you need the user-name on server-side, simply call:
SessionContext.getCurrentSession().getUserName();