How to get logged In User detail in liferay?
These lines of code will give you the user who is logged in from the LiferayFaces Context.
LiferayFacesContext liferayFacesContext = LiferayFacesContext.getInstance();
long companyId = liferayFacesContext.getCompanyId();
User user = liferayFacesContext.getUser(); //User is an Model of liferay
No comments:
Post a Comment